mirror of
https://git.openafs.org/openafs.git
synced 2025-01-20 07:51:00 +00:00
windows-windows-pipes-20080210
LICENSE MIT do not search for cellnames that match srvsvc or wkssvc pipes
This commit is contained in:
parent
cd82af9d4e
commit
d7235b1493
@ -1282,7 +1282,8 @@ long cm_LookupInternal(cm_scache_t *dscp, char *namep, long flags, cm_user_t *us
|
||||
else
|
||||
return CM_ERROR_NOSUCHFILE;
|
||||
}
|
||||
else if (!strchr(namep, '#') && !strchr(namep, '%')) {
|
||||
else if (!strchr(namep, '#') && !strchr(namep, '%') &&
|
||||
strcmp(namep, "srvsvc") && strcmp(namep, "wkssvc")) {
|
||||
/* nonexistent dir on freelance root, so add it */
|
||||
char fullname[200] = ".";
|
||||
int found = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user