1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-13 13:18:06 +03:00

r23553: Also ignore "lock directory" in registry global options.

Michael
(This used to be commit 3695a66166)
This commit is contained in:
Michael Adam 2007-06-20 10:08:31 +00:00 committed by Gerald (Jerry) Carter
parent 9b11c3e08f
commit 04c75d9c95

View File

@ -3163,9 +3163,12 @@ static BOOL process_registry_globals(BOOL (*pfunc)(const char *, const char *))
&type,
&size,
&data_p);
if (strwicmp(valname,"include") == 0) {
if ((strwicmp(valname,"include") == 0) ||
(strwicmp(valname, "lock directory") == 0) ||
(strwicmp(valname, "lock dir") == 0))
{
DEBUG(10, ("process_registry_globals: Ignoring "
"parameter 'include' in registry.\n"));
"parameter '%s' in registry.\n", valname));
continue;
}
DEBUG(10, ("process_registry_globals: got value '%s'\n",