diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-12-19 22:13:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:16:37 -0500 |
commit | 9e41616b0667565e53bdff344165d0df6753b433 (patch) | |
tree | d8d78c339da1a3fec6f7607c52c5c7e28a42c725 /source3/smbd | |
parent | 55ed1d59455566d90a03e7123fbf7a05a4bd4539 (diff) | |
download | samba-9e41616b0667565e53bdff344165d0df6753b433.tar.gz samba-9e41616b0667565e53bdff344165d0df6753b433.tar.bz2 samba-9e41616b0667565e53bdff344165d0df6753b433.zip |
r20264: Two lines above this we just checked if (fsp->is_directory) ...
(This used to be commit 88ab54b3b7ec6c0ac1958fca435880e29eeefd69)
Diffstat (limited to 'source3/smbd')
-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 a7804d3f43..b8ee13043b 100644 --- a/source3/smbd/reply.c +++ b/source3/smbd/reply.c @@ -3289,7 +3289,7 @@ int reply_close(connection_struct *conn, char *inbuf,char *outbuf, int size, /* * Special case - close NT SMB directory handle. */ - DEBUG(3,("close %s fnum=%d\n", fsp->is_directory ? "directory" : "stat file open", fsp->fnum)); + DEBUG(3,("close directory fnum=%d\n", fsp->fnum)); close_file(fsp,NORMAL_CLOSE); } else { /* |