diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-05-07 09:35:35 +0000 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2007-05-07 09:35:35 +0000 |
commit | a025f4c5387781f94a9f666a318b22e8e53fcc38 (patch) | |
tree | 4640be6990289562db677b33fc19fd9042c0a873 /source/utils/net_status.c | |
parent | bb0232bbf66a44742733dcf542ba931a1a1d271e (diff) | |
download | samba-a025f4c5387781f94a9f666a318b22e8e53fcc38.tar.gz samba-a025f4c5387781f94a9f666a318b22e8e53fcc38.tar.xz samba-a025f4c5387781f94a9f666a318b22e8e53fcc38.zip |
r22736: Start to merge the low-hanging fruit from the now 7000-line cluster patch.
This changes "struct process_id" to "struct server_id", keeping both is
just too much hassle. No functional change (I hope ;-))
Volker
Diffstat (limited to 'source/utils/net_status.c')
-rw-r--r-- | source/utils/net_status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/utils/net_status.c b/source/utils/net_status.c index 354111f6092..72ea645896a 100644 --- a/source/utils/net_status.c +++ b/source/utils/net_status.c @@ -160,7 +160,7 @@ static int show_share_parseable(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, } for (i=0; i<ids->num_entries; i++) { - struct process_id id = pid_to_procid(ids->entries[i].pid); + struct server_id id = pid_to_procid(ids->entries[i].pid); if (procid_equal(&id, &crec.pid)) { guest = False; break; |