diff options
author | Christopher R. Hertel <crh@samba.org> | 1998-07-31 22:39:15 +0000 |
---|---|---|
committer | Christopher R. Hertel <crh@samba.org> | 1998-07-31 22:39:15 +0000 |
commit | 28900ea26ff1c8d41328bba30206db7fe91e2184 (patch) | |
tree | 3aae83c6ce3cc0395ddbac76b5ca96791ebd68c4 /source3/smbd/ssl.c | |
parent | e6b86850912ea480bf656f05928cf5325b74c3db (diff) | |
download | samba-28900ea26ff1c8d41328bba30206db7fe91e2184.tar.gz samba-28900ea26ff1c8d41328bba30206db7fe91e2184.tar.xz samba-28900ea26ff1c8d41328bba30206db7fe91e2184.zip |
As per a Andrew's message, I went through and removed the timestring()
timestamps from several DEBUG messages. The timestamps are redundant now
that DEBUG() provides them automatically.
There are still a few more files to do, but I've got to get home for dinner.
Chris -)-----
(This used to be commit 60286ccecaa6028d687e6406755016455e3b3a26)
Diffstat (limited to 'source3/smbd/ssl.c')
-rw-r--r-- | source3/smbd/ssl.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/smbd/ssl.c b/source3/smbd/ssl.c index 68b45016b82..27bb8f3a525 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; |