From ba1699463bee4d622e76f54c1a1c17858545c84f Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Wed, 6 Jun 2012 15:22:31 +0200 Subject: s3:smb: introduce a name TID_FIELD_INVALID for the invalid value for a cnum/tid Pair-Programmed-With: Stefan Metzmacher --- source3/web/statuspage.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/web') diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index 4b3d3aea86..dd83d158ae 100644 --- a/source3/web/statuspage.c +++ b/source3/web/statuspage.c @@ -190,7 +190,7 @@ static int traverse_fn1(const struct connections_key *key, const struct connections_data *crec, void *private_data) { - if (crec->cnum == -1 && process_exists(crec->pid)) { + if (crec->cnum == TID_FIELD_INVALID && process_exists(crec->pid)) { char buf[30]; slprintf(buf,sizeof(buf)-1,"kill_%s", procid_str_static(&crec->pid)); if (cgi_variable(buf)) { @@ -206,7 +206,7 @@ static int traverse_fn2(const struct connections_key *key, const struct connections_data *crec, void *private_data) { - if (crec->cnum == -1 || !process_exists(crec->pid) || + if (crec->cnum == TID_FIELD_INVALID || !process_exists(crec->pid) || procid_equal(&crec->pid, &smbd_pid)) return 0; @@ -230,7 +230,7 @@ static int traverse_fn3(const struct connections_key *key, const struct connections_data *crec, void *private_data) { - if (crec->cnum == -1 || !process_exists(crec->pid)) + if (crec->cnum == TID_FIELD_INVALID || !process_exists(crec->pid)) return 0; printf("%s%s%s%s%s%s\n", -- cgit