diff options
author | John Terpstra <jht@samba.org> | 1998-03-29 05:34:03 +0000 |
---|---|---|
committer | John Terpstra <jht@samba.org> | 1998-03-29 05:34:03 +0000 |
commit | 6f1fc787de485b4899d9145a2225c22cf26c27a2 (patch) | |
tree | 3abda2a9f2741d47ea2ae2859edbc44cd6c69ad3 | |
parent | a4156f9b50c81fe40823cd8e32ec990690d3884c (diff) | |
download | samba-6f1fc787de485b4899d9145a2225c22cf26c27a2.tar.gz samba-6f1fc787de485b4899d9145a2225c22cf26c27a2.tar.bz2 samba-6f1fc787de485b4899d9145a2225c22cf26c27a2.zip |
Added remote machine and address to debug message in make_connection() function.
contributor: <ado@flower.nci.nih.gov>
(This used to be commit 7775b0f2aa43ee58f1a4f13004451235cfa157ef)
-rw-r--r-- | source3/smbd/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 39580d008d..7d9ca802e4 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -3325,7 +3325,7 @@ int make_connection(char *service,char *user,char *password, int pwlen, char *de return(-3); } - DEBUG(0,("%s couldn't find service %s\n",timestring(),service)); + DEBUG(0,("%s %s (%s) couldn't find service %s\n",timestring(),remote_machine,client_addr(),service)); return(-2); } |