From 73b200064fea77037f15cceeda303469b3e78624 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Sat, 16 Jun 2012 00:26:26 +0200 Subject: s3:util: rename procid_equal() to serverid_equal() Signed-off-by: Stefan Metzmacher --- source3/web/statuspage.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/web') diff --git a/source3/web/statuspage.c b/source3/web/statuspage.c index dd83d158ae..8eac8036d0 100644 --- a/source3/web/statuspage.c +++ b/source3/web/statuspage.c @@ -89,7 +89,7 @@ static char *mapPid2Machine (struct server_id pid) /* show machine name rather PID on table "Open Files"? */ if (PID_or_Machine) { for (map = pidmap; map != NULL; map = map->next) { - if (procid_equal(&pid, &map->pid)) { + if (serverid_equal(&pid, &map->pid)) { if (map->machine == NULL) /* no machine name */ break; /* show PID */ @@ -207,7 +207,7 @@ static int traverse_fn2(const struct connections_key *key, void *private_data) { if (crec->cnum == TID_FIELD_INVALID || !process_exists(crec->pid) || - procid_equal(&crec->pid, &smbd_pid)) + serverid_equal(&crec->pid, &smbd_pid)) return 0; addPid2Machine (crec->pid, crec->machine); -- cgit