Changeset 228 for branches/samba-3.2.x/source/web
- Timestamp:
- May 26, 2009, 9:44:50 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/samba-3.2.x/source/web/statuspage.c
r133 r228 44 44 /* show machine name rather PID on table "Open Files"? */ 45 45 if (PID_or_Machine) { 46 PIDMAP *p; 47 48 for (p = pidmap; p != NULL; ) { 46 PIDMAP *p, *next; 47 48 for (p = pidmap; p != NULL; p = next) { 49 next = p->next; 49 50 DLIST_REMOVE(pidmap, p); 50 51 SAFE_FREE(p->machine);
Note:
See TracChangeset
for help on using the changeset viewer.