diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/libsmb/namequery.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source3/libsmb/namequery.c b/source3/libsmb/namequery.c index 19d89ce363..50fb9f1620 100644 --- a/source3/libsmb/namequery.c +++ b/source3/libsmb/namequery.c @@ -408,7 +408,8 @@ bool name_status_find(const char *q_name, goto done; for (i=0;i<count;i++) { - if (status[i].type == type) + /* Find first one of the requested type that's not a GROUP. */ + if (status[i].type == type && ! (status[i].flags & 0x80)) break; } if (i == count) |