diff options
author | Jeremy Allison <jra@samba.org> | 1998-07-29 00:27:23 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-07-29 00:27:23 +0000 |
commit | 7b3a9d6285cc0d1967155a68845e28c6296ecc67 (patch) | |
tree | 09bcc442a9e8b756ea67e5085eac888d86e3fdde /source/smbd/reply.c | |
parent | 17f68cc86cafbb04dbd9cc6ecc0aac7b911c9b70 (diff) | |
download | samba-7b3a9d6285cc0d1967155a68845e28c6296ecc67.tar.gz samba-7b3a9d6285cc0d1967155a68845e28c6296ecc67.tar.xz samba-7b3a9d6285cc0d1967155a68845e28c6296ecc67.zip |
locking.c: Print messages when we downgrade a lock.
reply.c: Do the same mask expansion we do in trans2.c - needed for Win98.
trans2.c: Make the mask expansion into a function call now we have to
do it twice.
Jeremy.
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r-- | source/smbd/reply.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c index c9daf14b4b0..f05ba2eee66 100644 --- a/source/smbd/reply.c +++ b/source/smbd/reply.c @@ -1081,6 +1081,9 @@ int reply_search(char *inbuf,char *outbuf, int dum_size, int dum_buffsize) } } + /* Convert the formatted mask. (This code lives in trans2.c) */ + mask_convert(mask); + { for (p=mask; *p; p++) { |