diff options
author | Gerald Carter <jerry@samba.org> | 2005-02-19 16:40:19 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:41 -0500 |
commit | 8a10eb6d4ea93c15bfe4b0c08bcea5467009d394 (patch) | |
tree | e9bab39c674612eac9d9111952e271315defba8e | |
parent | 96aaf64fa6279598b1a7ce67f02316c6cdd2a651 (diff) | |
download | samba-8a10eb6d4ea93c15bfe4b0c08bcea5467009d394.tar.gz samba-8a10eb6d4ea93c15bfe4b0c08bcea5467009d394.tar.bz2 samba-8a10eb6d4ea93c15bfe4b0c08bcea5467009d394.zip |
r5462: BUG 1549: patch from SATOH Fumiyasu <fumiya@samba.gr.jp> to fix trunction of service names
(This used to be commit 440a4ecc1641658a2553312b759b6b97a8e5c981)
-rw-r--r-- | source3/utils/status.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/status.c b/source3/utils/status.c index cae4e07975..75e7cb3de7 100644 --- a/source3/utils/status.c +++ b/source3/utils/status.c @@ -541,7 +541,7 @@ static int traverse_fn1(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, void *st return 0; } - d_printf("%-10.10s %5d %-12s %s", + d_printf("%-10s %5d %-12s %s", crec.name,(int)crec.pid, crec.machine, asctime(LocalTime(&crec.start))); |