diff options
author | Jeremy Allison <jra@samba.org> | 2006-02-27 18:48:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:10:51 -0500 |
commit | 447d49be9e42f05211cb77ddc5a8189329791ecf (patch) | |
tree | 80e112796b19512910ed8574a630f9f1adf1024b | |
parent | 7f59c7fcd627d8ca5ff801266967c165465b2611 (diff) | |
download | samba-447d49be9e42f05211cb77ddc5a8189329791ecf.tar.gz samba-447d49be9e42f05211cb77ddc5a8189329791ecf.tar.xz samba-447d49be9e42f05211cb77ddc5a8189329791ecf.zip |
r13724: Remove unused variable. Bug #3559 from
jason@ncac.gwu.edu.
Jeremy.
(This used to be commit 0295ed3d5c3bb34ef29d01100a6156a754377930)
-rw-r--r-- | source3/smbd/oplock_irix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/oplock_irix.c b/source3/smbd/oplock_irix.c index fa86211c7f6..8f014387459 100644 --- a/source3/smbd/oplock_irix.c +++ b/source3/smbd/oplock_irix.c @@ -206,13 +206,13 @@ oplock state of %x.\n", fsp->fsp_name, (unsigned int)fsp->dev, } /**************************************************************************** - Set *maxfd to include oplock read pipe. + See if there is a message waiting in this fd set. Note that fds MAY BE NULL ! If so we must do our own select. ****************************************************************************/ static BOOL irix_oplock_msg_waiting(fd_set *fds) { - int maxfd, selrtn; + int selrtn; fd_set myfds; struct timeval to; |