summaryrefslogtreecommitdiff
path: root/source3/smbd/ssl.c
diff options
context:
space:
mode:
Diffstat (limited to 'source3/smbd/ssl.c')
-rw-r--r--source3/smbd/ssl.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/smbd/ssl.c b/source3/smbd/ssl.c
index 68b45016b8..27bb8f3a52 100644
--- a/source3/smbd/ssl.c
+++ b/source3/smbd/ssl.c
@@ -246,16 +246,15 @@ char *reqHosts, *resignHosts;
return 0;
}
if(msg_type != 0x81){ /* first packet must be a session request */
- DEBUG(0, ("%s Client %s did not use session setup; access denied\n",
- timestring(), client_addr(fd)));
+ DEBUG( 0, ( "Client %s did not use session setup; access denied\n",
+ client_addr(fd) ) );
send_smb(fd, (char *)buf);
return -1;
}
buf[4] = 0x8e; /* negative session response: use SSL */
send_smb(fd, (char *)buf);
if(sslutil_accept(fd) != 0){
- DEBUG(0, ("%s Client %s failed SSL negotiation!\n",
- timestring(), client_addr(fd)));
+ DEBUG( 0, ( "Client %s failed SSL negotiation!\n", client_addr(fd) ) );
return -1;
}
return 1;