X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=stat.c;h=532f9cdfc5449add435bcfb4ba71a91924991c9b;hp=7346f097e61e9933759563d64af7e7b2dedd3eb6;hb=69f0930489da9ace5af8aee104ad21d188aed387;hpb=5fde5b4d4abeb795f71101d1fd3524f8a27971eb diff --git a/stat.c b/stat.c index 7346f097..532f9cdf 100644 --- a/stat.c +++ b/stat.c @@ -211,8 +211,10 @@ void dump_empty_status(void) int stat_item_valid(const char *item) { int i; - if (!item || !*item) + if (!item || !*item) { + PARA_ERROR_LOG("%s\n", "no item"); return -E_UNKNOWN_STAT_ITEM; + } FOR_EACH_STAT_ITEM(i) if (!strcmp(status_item_list[i], item)) return i; @@ -267,6 +269,7 @@ unsigned for_each_line(char *buf, int n, void (*line_handler)(char *)) char *start = buf, *end; int i, num_lines = 0; + PARA_INFO_LOG("buf: %s", buf); while (start < buf + n) { char *next_null; char *next_cr; @@ -284,6 +287,7 @@ unsigned for_each_line(char *buf, int n, void (*line_handler)(char *)) num_lines++; if (line_handler) { *end = '\0'; + PARA_INFO_LOG("calling line handler: %s\n", start); line_handler(start); start = ++end; } else