diff options
-rw-r--r-- | source3/lib/util.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/lib/util.c b/source3/lib/util.c index 554f5ee79d..37933d1361 100644 --- a/source3/lib/util.c +++ b/source3/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); |