The branch, master has been updated via 88332df lib/param: fix line length of DEBUG statments touched in previous commit in set_variable() via b59fed0 lib/param: fix function name (set_variable) in debug statements via d084f5e lib/param: fix function name (lpcfg_file_list_changed) in a debug message from 382849a s3:smbd:durable: remove a TODO comment about write time updates
http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master - Log ----------------------------------------------------------------- commit 88332dfd9f636196e594173b62d05b0607e3c05b Author: Michael Adam <ob...@samba.org> Date: Mon Oct 29 15:16:04 2012 +0100 lib/param: fix line length of DEBUG statments touched in previous commit in set_variable() Signed-off-by: Michael Adam <ob...@samba.org> Reviewed-by: Ira Cooper <i...@samba.org> Autobuild-User(master): Ira Cooper <i...@samba.org> Autobuild-Date(master): Mon Oct 29 21:55:35 CET 2012 on sn-devel-104 commit b59fed0d5d7dceff3e5ab47a6f219849a24cff1b Author: Michael Adam <ob...@samba.org> Date: Mon Oct 29 14:52:50 2012 +0100 lib/param: fix function name (set_variable) in debug statements Signed-off-by: Michael Adam <ob...@samba.org> Reviewed-by: Ira Cooper <i...@samba.org> commit d084f5e6a66accf223efb4f9a6fa4b2d0ca63ed6 Author: Michael Adam <ob...@samba.org> Date: Mon Oct 29 13:44:54 2012 +0100 lib/param: fix function name (lpcfg_file_list_changed) in a debug message Signed-off-by: Michael Adam <ob...@samba.org> Reviewed-by: Ira Cooper <i...@samba.org> ----------------------------------------------------------------------- Summary of changes: lib/param/loadparm.c | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) Changeset truncated at 500 lines: diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index b2e4218..2462796 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -1076,7 +1076,7 @@ static void add_to_file_list(struct loadparm_context *lp_ctx, bool lpcfg_file_list_changed(struct loadparm_context *lp_ctx) { struct file_lists *f; - DEBUG(6, ("lp_file_list_changed()\n")); + DEBUG(6, ("lpcfg_file_list_changed()\n")); for (f = lp_ctx->file_lists; f != NULL; f = f->next) { char *n2; @@ -1300,7 +1300,8 @@ static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr, case P_BOOL: { bool b; if (!set_boolean(pszParmValue, &b)) { - DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue)); + DEBUG(0, ("set_variable(%s): value is not " + "boolean!\n", pszParmValue)); return false; } *(bool *)parm_ptr = b; @@ -1310,7 +1311,8 @@ static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr, case P_BOOLREV: { bool b; if (!set_boolean(pszParmValue, &b)) { - DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue)); + DEBUG(0, ("set_variable(%s): value is not " + "boolean!\n", pszParmValue)); return false; } *(bool *)parm_ptr = !b; @@ -1339,8 +1341,8 @@ static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr, } } - DEBUG(0,("lp_do_parameter(%s): value is not " - "a valid size specifier!\n", pszParmValue)); + DEBUG(0, ("set_variable(%s): value is not " + "a valid size specifier!\n", pszParmValue)); return false; } -- Samba Shared Repository