1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:utils: Add missing newlines to logging messages

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-08-07 16:51:02 +12:00 committed by Andrew Bartlett
parent aec5307ef7
commit a30b6d1eb7
3 changed files with 4 additions and 4 deletions

View File

@ -5089,7 +5089,7 @@ static bool get_user_tokens_from_file(FILE *f,
} }
if (token == NULL) { if (token == NULL) {
DEBUG(0, ("File does not begin with username")); DEBUG(0, ("File does not begin with username\n"));
return false; return false;
} }

View File

@ -47,7 +47,7 @@ static bool open_sockets(void)
if (!interpret_string_addr(&ss, sock_addr, if (!interpret_string_addr(&ss, sock_addr,
AI_NUMERICHOST|AI_PASSIVE)) { AI_NUMERICHOST|AI_PASSIVE)) {
DEBUG(0,("open_sockets: unable to get socket address " DEBUG(0,("open_sockets: unable to get socket address "
"from string %s", sock_addr)); "from string %s\n", sock_addr));
return false; return false;
} }
ServerFD = open_socket_in( ServerFD = open_socket_in(

View File

@ -196,7 +196,7 @@ static void manage_gensec_get_pw_request(enum stdio_helper_mode stdio_helper_mod
{ {
DATA_BLOB in; DATA_BLOB in;
if (strlen(buf) < 2) { if (strlen(buf) < 2) {
DEBUG(1, ("query [%s] invalid", buf)); DEBUG(1, ("query [%s] invalid\n", buf));
printf("BH Query invalid\n"); printf("BH Query invalid\n");
return; return;
} }
@ -1484,7 +1484,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode,
} }
if (strlen(buf) < 2) { if (strlen(buf) < 2) {
DEBUG(1, ("query [%s] invalid", buf)); DEBUG(1, ("query [%s] invalid\n", buf));
printf("BH Query invalid\n"); printf("BH Query invalid\n");
talloc_free(mem_ctx); talloc_free(mem_ctx);
return; return;