diff options
author | Andrew Tridgell <tridge@samba.org> | 1997-10-02 14:11:34 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1997-10-02 14:11:34 +0000 |
commit | a69125bae97619580134dfd38f1952f37b2bbcec (patch) | |
tree | caf9818f9a7ad895d76776a354a4af38edcb809d /source3/smbd/reply.c | |
parent | fbd5dded7dd027faa549f854b45f47b72af47528 (diff) | |
download | samba-a69125bae97619580134dfd38f1952f37b2bbcec.tar.gz samba-a69125bae97619580134dfd38f1952f37b2bbcec.tar.bz2 samba-a69125bae97619580134dfd38f1952f37b2bbcec.zip |
change a debug level in reply.c
change from ERRbaddirectory to ERRbadpath for ENOTDIR errors. This
reverts to the old Samba code. I've done quite a bit of testing
against NT4 and have yet to get it to produce the ERRbaddirectory
error code. Producing ERRbaddirectory made a visual basic application
that was sent to me not run. This might explain some of the "it
doesn't work any more" complaints we've got about 1.9.17.
Jeremy, can you remember how you got NT to produce ERRbaddirectory?
There might be some specific circumstances we need to cover.
(This used to be commit 1ed901ddffef48cdce87017bab0fd613e6ca8637)
Diffstat (limited to 'source3/smbd/reply.c')
-rw-r--r-- | source3/smbd/reply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/reply.c b/source3/smbd/reply.c index 1a896aa02a..aa3f43a813 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -599,7 +599,7 @@ int reply_sesssetup_and_X(char *inbuf,char *outbuf,int length,int bufsize) if (!done_sesssetup) max_send = MIN(max_send,smb_bufsize); - DEBUG(1,(" Client requested max send size of %d\n", max_send)); + DEBUG(6,("Client requested max send size of %d\n", max_send)); done_sesssetup = True; |