diff options
author | Garming Sam <garming@catalyst.net.nz> | 2014-03-27 14:22:41 +1300 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2014-07-31 08:17:11 +0200 |
commit | 308d802f62839c7df27fd6384f33e36f4273f02a (patch) | |
tree | 24241b9c51d4f4349991cc17879cf565423f12c9 | |
parent | 0b6bf024bb79bfdbd821368c7662a120588380fe (diff) | |
download | samba-308d802f62839c7df27fd6384f33e36f4273f02a.tar.gz samba-308d802f62839c7df27fd6384f33e36f4273f02a.tar.xz samba-308d802f62839c7df27fd6384f33e36f4273f02a.zip |
param: add the necessary new line for the debug message in handle_copy
Change-Id: Ia6fc12b9d85032b6f501395cd82c31bcfe229822
Signed-off-by: Garming Sam <garming@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Michael Adam <obnox@samba.org>
-rw-r--r-- | lib/param/loadparm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/param/loadparm.c b/lib/param/loadparm.c index d975359a4b..75ddb221c1 100644 --- a/lib/param/loadparm.c +++ b/lib/param/loadparm.c @@ -1143,7 +1143,7 @@ bool handle_copy(struct loadparm_context *lp_ctx, struct loadparm_service *servi serviceTemp = lpcfg_getservicebyname(lp_ctx, pszParmValue); if (service == NULL) { - DEBUG(0, ("Unable to copy service - invalid service destination")); + DEBUG(0, ("Unable to copy service - invalid service destination.\n")); return false; } |