X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=user_list.c;h=45501ad1e2984147839d2098597ee06db902fa39;hp=8e21b238a26a0e7a4da29e0d210dfd64ecadf74d;hb=c73d23911d78ed10179c12ef8f79a3fcf3bbcdaf;hpb=2c679eeb8bbc93220f85403eca6e9380dc624a6a diff --git a/user_list.c b/user_list.c index 8e21b238..45501ad1 100644 --- a/user_list.c +++ b/user_list.c @@ -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); }