diff options
author | Volker Lendecke <vl@samba.org> | 2010-08-12 12:25:41 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-08-12 12:26:56 +0200 |
commit | 277248a4a7241a277cf442f0683b925d01a37ae6 (patch) | |
tree | ab61e7b9623e5d92f743da87a98dbe3cab1d2ff4 | |
parent | f62756e8f06c0c3d54c41460c8d25cb12af5fb24 (diff) | |
download | samba-277248a4a7241a277cf442f0683b925d01a37ae6.tar.gz samba-277248a4a7241a277cf442f0683b925d01a37ae6.tar.bz2 samba-277248a4a7241a277cf442f0683b925d01a37ae6.zip |
s3: ?true:false is a *bit* pointless :-)
-rw-r--r-- | source3/smbd/process.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c index 05e53904d7..2e319135c7 100644 --- a/source3/smbd/process.c +++ b/source3/smbd/process.c @@ -2275,7 +2275,7 @@ static void smbd_server_connection_read_handler( NTSTATUS status; uint32_t seqnum; - bool from_client = (smbd_server_fd() == fd)?true:false; + bool from_client = (smbd_server_fd() == fd); if (from_client) { smbd_lock_socket(conn); |