X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffind.c;h=535e46f6d1c7d02e74e567176ced2fd5d081024b;hp=c5d26d7b0e67a6d5022cc6851daf4c1b603d647c;hb=ba39ced8804765705f4c61a92db0fddb8d672c7d;hpb=cefc644d58786b73b2baaa2c2912da2738d24511 diff --git a/daemon/find.c b/daemon/find.c index c5d26d7..535e46f 100644 --- a/daemon/find.c +++ b/daemon/find.c @@ -23,6 +23,7 @@ #include #include #include +#include #include #include "../src/guestfs_protocol.h" @@ -113,7 +114,7 @@ do_find (const char *dir) } } if (pclose (fp) != 0) { - reply_with_perror ("pclose: find"); + reply_with_perror ("pclose"); free_stringslen (res, size); return NULL; } @@ -128,7 +129,7 @@ do_find (const char *dir) sort_strings (res, size-1); - return res; /* caller frees */ + return res; /* caller frees */ } /* The code below assumes each path returned can fit into a protocol @@ -212,20 +213,19 @@ do_find0 (const char *dir) if (ferror (fp)) { perror (dir); - send_file_end (1); /* Cancel. */ + send_file_end (1); /* Cancel. */ pclose (fp); return -1; } if (pclose (fp) != 0) { perror (dir); - send_file_end (1); /* Cancel. */ + send_file_end (1); /* Cancel. */ return -1; } - if (send_file_end (0)) /* Normal end of file. */ + if (send_file_end (0)) /* Normal end of file. */ return -1; return 0; } -