diff options
Diffstat (limited to 'daemon/realpath.c')
-rw-r--r-- | daemon/realpath.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/daemon/realpath.c b/daemon/realpath.c index 89f77378..607381b8 100644 --- a/daemon/realpath.c +++ b/daemon/realpath.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 @@ -92,10 +92,6 @@ do_case_sensitive_path (const char *path) continue; } - if (verbose) - fprintf (stderr, "case_sensitive_path: path = %s, next = %zu, i = %zu\n", - path, next, i); - if ((i == 1 && path[0] == '.') || (i == 2 && path[0] == '.' && path[1] == '.')) { reply_with_error ("path contained . or .. elements"); |