diff options
author | Michael Adam <obnox@samba.org> | 2012-06-06 15:22:31 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-06-06 19:37:14 +0200 |
commit | ba1699463bee4d622e76f54c1a1c17858545c84f (patch) | |
tree | 9bb383e332c181f026939d0370e5389c385b56b3 /source3/utils/net_status.c | |
parent | aa3a7de3687ac78ae1ed3fa395d8c4707a24b774 (diff) | |
download | samba-ba1699463bee4d622e76f54c1a1c17858545c84f.tar.gz samba-ba1699463bee4d622e76f54c1a1c17858545c84f.tar.xz samba-ba1699463bee4d622e76f54c1a1c17858545c84f.zip |
s3:smb: introduce a name TID_FIELD_INVALID for the invalid value for a cnum/tid
Pair-Programmed-With: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/utils/net_status.c')
-rw-r--r-- | source3/utils/net_status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/net_status.c b/source3/utils/net_status.c index 2bb639138e..85d023505e 100644 --- a/source3/utils/net_status.c +++ b/source3/utils/net_status.c @@ -96,7 +96,7 @@ static int show_share(struct db_record *rec, const struct connections_data *crec, void *state) { - if (crec->cnum == -1) + if (crec->cnum == TID_FIELD_INVALID) return 0; if (!process_exists(crec->pid)) { @@ -143,7 +143,7 @@ static int show_share_parseable(const struct connections_key *key, int i; bool guest = true; - if (crec->cnum == -1) + if (crec->cnum == TID_FIELD_INVALID) return 0; if (!process_exists(crec->pid)) { |