X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=daemon%2Ffind.c;h=61d4a5fbc6701c20c85077b278273abb308596be;hp=c5d26d7b0e67a6d5022cc6851daf4c1b603d647c;hb=463a739bf0475cf45bf03ad2c4130b2ed656686e;hpb=cefc644d58786b73b2baaa2c2912da2738d24511 diff --git a/daemon/find.c b/daemon/find.c index c5d26d7..61d4a5f 100644 --- a/daemon/find.c +++ b/daemon/find.c @@ -1,5 +1,5 @@ /* libguestfs - the guestfsd daemon - * Copyright (C) 2009 Red Hat Inc. + * Copyright (C) 2009-2011 Red Hat Inc. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,9 +23,10 @@ #include #include #include +#include #include -#include "../src/guestfs_protocol.h" +#include "guestfs_protocol.h" #include "daemon.h" #include "actions.h" @@ -99,9 +100,6 @@ do_find (const char *dir) free (cmd); while ((r = input_to_nul (fp, str, PATH_MAX)) > 0) { - if (verbose) - printf ("find string: %s\n", str); - len = strlen (str); if (len <= sysrootdirlen) continue; @@ -113,7 +111,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 +126,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 @@ -196,9 +194,6 @@ do_find0 (const char *dir) reply (NULL, NULL); while ((r = input_to_nul (fp, str, GUESTFS_MAX_CHUNK_SIZE)) > 0) { - if (verbose) - printf ("find0 string: %s\n", str); - len = strlen (str); if (len <= sysrootdirlen) continue; @@ -212,20 +207,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; } -