From: Paul Green Date: Wed, 18 Aug 2004 17:55:50 +0000 (+0000) Subject: r1890: Cut down on debug messages from is_in_path. paulg X-Git-Tag: samba-misc-tags/initial-v3-0-unstable~5908 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8b1c2126af3f29a3708b6823616ecec43ce63b95;p=thirdparty%2Fsamba.git r1890: Cut down on debug messages from is_in_path. paulg --- diff --git a/source/lib/util.c b/source/lib/util.c index 554f5ee79da..37933d13610 100644 --- a/source/lib/util.c +++ b/source/lib/util.c @@ -1495,14 +1495,13 @@ BOOL is_in_path(const char *name, name_compare_entry *namelist, BOOL case_sensit pstring last_component; char *p; - DEBUG(8, ("is_in_path: %s\n", name)); - /* if we have no list it's obviously not in the path */ if((namelist == NULL ) || ((namelist != NULL) && (namelist[0].name == NULL))) { - DEBUG(8,("is_in_path: no name list.\n")); return False; } + DEBUG(8, ("is_in_path: %s\n", name)); + /* Get the last component of the unix name. */ p = strrchr_m(name, '/'); strncpy(last_component, p ? ++p : name, sizeof(last_component)-1);