X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Ffind.c;h=98895ab30b1fcb26aad719970aca0cd5b87ab8c6;hb=540c85a1102c5876265502f8ae287ea697834d20;hp=c5d26d7b0e67a6d5022cc6851daf4c1b603d647c;hpb=cefc644d58786b73b2baaa2c2912da2738d24511;p=libguestfs.git diff --git a/daemon/find.c b/daemon/find.c index c5d26d7..98895ab 100644 --- a/daemon/find.c +++ b/daemon/find.c @@ -128,7 +128,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 +212,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; } -