X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=user_list.c;h=4f63f635846a7268276bddad83f931380e89dfe7;hp=8e21b238a26a0e7a4da29e0d210dfd64ecadf74d;hb=0f6df2322c12b1cc20dea08bb6c397465d4f5b46;hpb=3689799ede7bba230ca544ac953392b428c3d662 diff --git a/user_list.c b/user_list.c index 8e21b238..4f63f635 100644 --- a/user_list.c +++ b/user_list.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2006-2007 Andre Noll + * Copyright (C) 2006-2008 Andre Noll * * Licensed under the GPL v2. For licencing details see COPYING. */ @@ -40,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) @@ -79,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); }