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