1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r22282: Fix last few name -> servicename changes.

Jeremy.
(This used to be commit f5c22f26f7)
This commit is contained in:
Jeremy Allison 2007-04-16 20:06:02 +00:00 committed by Gerald (Jerry) Carter
parent 5a22df2a5c
commit b1842fd294
3 changed files with 4 additions and 4 deletions

View File

@ -102,7 +102,7 @@ static int show_share(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
}
d_printf("%-10.10s %s %-12s %s",
crec.name,procid_str_static(&crec.pid),
crec.servicename,procid_str_static(&crec.pid),
crec.machine,
time_to_asc(crec.start));
@ -168,7 +168,7 @@ static int show_share_parseable(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf,
}
d_printf("%s\\%s\\%s\\%s\\%s\\%s\\%s",
crec.name,procid_str_static(&crec.pid),
crec.servicename,procid_str_static(&crec.pid),
guest ? "" : uidtoname(ids->entries[i].uid),
guest ? "" : gidtoname(ids->entries[i].gid),
crec.machine,

View File

@ -205,7 +205,7 @@ static int traverse_fn1(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void *st
}
d_printf("%-10s %s %-12s %s",
crec.name,procid_str_static(&crec.pid),
crec.servicename,procid_str_static(&crec.pid),
crec.machine,
time_to_asc(crec.start));

View File

@ -230,7 +230,7 @@ static int traverse_fn3(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void* st
return 0;
printf("<tr><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td><td>%s</td></tr>\n",
crec.name,uidtoname(crec.uid),
crec.servicename,uidtoname(crec.uid),
gidtoname(crec.gid),procid_str_static(&crec.pid),
crec.machine,
tstring(crec.start));