summaryrefslogtreecommitdiff
path: root/source/smbd/share_access.c
diff options
context:
space:
mode:
Diffstat (limited to 'source/smbd/share_access.c')
-rw-r--r--source/smbd/share_access.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/smbd/share_access.c b/source/smbd/share_access.c
index b12d543f5a1..adb9d169642 100644
--- a/source/smbd/share_access.c
+++ b/source/smbd/share_access.c
@@ -86,7 +86,7 @@ static BOOL token_contains_name(TALLOC_CTX *mem_ctx,
if (name == NULL) {
/* This is too security sensitive, better panic than return a
* result that might be interpreted in a wrong way. */
- smb_panic("substitutions failed");
+ smb_panic("substitutions failed\n");
}
/* check to see is we already have a SID */
@@ -136,7 +136,7 @@ static BOOL token_contains_name(TALLOC_CTX *mem_ctx,
}
continue;
}
- smb_panic("got invalid prefix from do_groups_check");
+ smb_panic("got invalid prefix from do_groups_check\n");
}
return False;
}
@@ -164,7 +164,7 @@ BOOL token_contains_name_in_list(const char *username,
}
if ( (mem_ctx = talloc_new(NULL)) == NULL ) {
- smb_panic("talloc_new failed");
+ smb_panic("talloc_new failed\n");
}
while (*list != NULL) {