X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=daemon%2Ffind.c;h=626017d17515da8706b885e9829483795e728cb9;hb=7fb25f53f836172376c25b405b5f88f4ec37eed8;hp=c5d26d7b0e67a6d5022cc6851daf4c1b603d647c;hpb=cefc644d58786b73b2baaa2c2912da2738d24511;p=libguestfs.git diff --git a/daemon/find.c b/daemon/find.c index c5d26d7..626017d 100644 --- a/daemon/find.c +++ b/daemon/find.c @@ -23,9 +23,10 @@ #include #include #include +#include #include -#include "../src/guestfs_protocol.h" +#include "guestfs_protocol.h" #include "daemon.h" #include "actions.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; } -