1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

Make sure we write the value stored in value, not line (doublequoted).

Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
This commit is contained in:
Wilco Baan Hofman 2010-07-27 17:21:48 +02:00 committed by Jelmer Vernooij
parent a23aa3f5f1
commit 1ed896407f

View File

@ -271,14 +271,14 @@ _PUBLIC_ WERROR reg_dotreg_diff_load(int fd,
/* Delete value */
if (p[0] == '-') {
error = callbacks->del_value(callback_data,
curkey, line);
curkey, value);
/* Ignore if key does not exist (WERR_BADFILE)
* Consistent with Windows behaviour */
if (!W_ERROR_IS_OK(error) &&
!W_ERROR_EQUAL(error, WERR_BADFILE)) {
DEBUG(0, ("Error deleting value %s in key %s\n",
line, curkey));
value, curkey));
talloc_free(mem_ctx);
return error;
}
@ -323,11 +323,11 @@ _PUBLIC_ WERROR reg_dotreg_diff_load(int fd,
return WERR_GENERAL_FAILURE;
}
error = callbacks->set_value(callback_data, curkey, line,
error = callbacks->set_value(callback_data, curkey, value,
value_type, data);
if (!W_ERROR_IS_OK(error)) {
DEBUG(0, ("Error setting value for %s in %s\n",
line, curkey));
value, curkey));
talloc_free(mem_ctx);
return error;
}