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:
parent
aec5307ef7
commit
a30b6d1eb7
@ -5089,7 +5089,7 @@ static bool get_user_tokens_from_file(FILE *f,
|
||||
}
|
||||
|
||||
if (token == NULL) {
|
||||
DEBUG(0, ("File does not begin with username"));
|
||||
DEBUG(0, ("File does not begin with username\n"));
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -47,7 +47,7 @@ static bool open_sockets(void)
|
||||
if (!interpret_string_addr(&ss, sock_addr,
|
||||
AI_NUMERICHOST|AI_PASSIVE)) {
|
||||
DEBUG(0,("open_sockets: unable to get socket address "
|
||||
"from string %s", sock_addr));
|
||||
"from string %s\n", sock_addr));
|
||||
return false;
|
||||
}
|
||||
ServerFD = open_socket_in(
|
||||
|
@ -196,7 +196,7 @@ static void manage_gensec_get_pw_request(enum stdio_helper_mode stdio_helper_mod
|
||||
{
|
||||
DATA_BLOB in;
|
||||
if (strlen(buf) < 2) {
|
||||
DEBUG(1, ("query [%s] invalid", buf));
|
||||
DEBUG(1, ("query [%s] invalid\n", buf));
|
||||
printf("BH Query invalid\n");
|
||||
return;
|
||||
}
|
||||
@ -1484,7 +1484,7 @@ static void manage_gensec_request(enum stdio_helper_mode stdio_helper_mode,
|
||||
}
|
||||
|
||||
if (strlen(buf) < 2) {
|
||||
DEBUG(1, ("query [%s] invalid", buf));
|
||||
DEBUG(1, ("query [%s] invalid\n", buf));
|
||||
printf("BH Query invalid\n");
|
||||
talloc_free(mem_ctx);
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user