X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=user_list.c;h=45501ad1e2984147839d2098597ee06db902fa39;hp=64f211499fcf51416b9b2a080e1d1798e004c0b3;hb=c73d23911d78ed10179c12ef8f79a3fcf3bbcdaf;hpb=47fedd501291bf9b0ca2204e2af3d1617b6f18a8 diff --git a/user_list.c b/user_list.c index 64f21149..45501ad1 100644 --- a/user_list.c +++ b/user_list.c @@ -1,27 +1,19 @@ /* * Copyright (C) 2006-2007 Andre Noll * - * This program is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. + * Licensed under the GPL v2. For licencing details see COPYING. */ /** \file user_list.c user handling for para_server */ +#include +#include + #include "para.h" #include "error.h" #include "fd.h" #include "string.h" +#include "list.h" #include "user_list.h" static struct list_head user_list; @@ -48,7 +40,7 @@ static void populate_user_list(char *user_list_file) struct user *u; ret = para_fgets(line, MAXLINE, file_ptr); if (ret < 0) - PARA_ERROR_LOG("%s\n", PARA_STRERROR(-ret)); + PARA_ERROR_LOG("%s\n", para_strerror(-ret)); if (ret <= 0) break; if (sscanf(line,"%200s %200s %200s %200s", w, n, k, p) < 3) @@ -87,7 +79,7 @@ out: fclose(file_ptr); if (ret >= 0) return; - PARA_EMERG_LOG("%s\n", PARA_STRERROR(-ret)); + PARA_EMERG_LOG("%s\n", para_strerror(-ret)); exit(EXIT_FAILURE); }