diff options
-rw-r--r-- | source4/lib/registry/patchfile_dotreg.c | 2 | ||||
-rw-r--r-- | source4/setup/provision.reg | 10 |
2 files changed, 10 insertions, 2 deletions
diff --git a/source4/lib/registry/patchfile_dotreg.c b/source4/lib/registry/patchfile_dotreg.c index f11ceb1be0..1b4bffe819 100644 --- a/source4/lib/registry/patchfile_dotreg.c +++ b/source4/lib/registry/patchfile_dotreg.c @@ -211,7 +211,7 @@ _PUBLIC_ WERROR reg_dotreg_diff_load(int fd, const struct reg_diff_callbacks *ca } /* Delete value */ - if (strcmp(p, "-")) { + if (strcmp(p, "-") == 0) { error = callbacks->del_value(callback_data, curkey, line); if (!W_ERROR_IS_OK(error)) { DEBUG(0, ("Error deleting value %s in key %s\n", line, curkey)); diff --git a/source4/setup/provision.reg b/source4/setup/provision.reg index 867f3e204c..0e657f3e6a 100644 --- a/source4/setup/provision.reg +++ b/source4/setup/provision.reg @@ -9,12 +9,20 @@ REGEDIT4 [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control] [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ProductOptions] -ProductType="LanmanNT" +ProductType=LanmanNT [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Print] [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Terminal Server] +[HKEY_LOCAL_MACHINE\System] + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet] + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services] + +[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Netlogon] + [HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\Netlogon\Parameters] RefusePasswordChange=REG_DWORD:0 |