diff options
author | Volker Lendecke <vl@samba.org> | 2009-04-18 16:10:57 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-04-19 09:27:14 +0200 |
commit | 9b3f2e69f772a12c661879109e0edcda6c365be4 (patch) | |
tree | 3f149c91a4a19c012364779b32f34e4aa02d8743 /source3/smbd | |
parent | fa4ff87acdfc2fa064eb7fb9d45eef0969128994 (diff) | |
download | samba-9b3f2e69f772a12c661879109e0edcda6c365be4.tar.gz samba-9b3f2e69f772a12c661879109e0edcda6c365be4.tar.bz2 samba-9b3f2e69f772a12c661879109e0edcda6c365be4.zip |
Make "struct policy" private to srv_lsa_hnd.c
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/conn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/conn.c b/source3/smbd/conn.c index a52f2d2e96..3800643769 100644 --- a/source3/smbd/conn.c +++ b/source3/smbd/conn.c @@ -212,7 +212,7 @@ bool conn_idle_all(time_t t) for (plist = get_first_internal_pipe(); plist; plist = get_next_internal_pipe(plist)) { - if (plist->pipe_handles && plist->pipe_handles->count) { + if (num_pipe_handles(plist->pipe_handles) != 0) { return False; } } |