diff options
author | wollman <wollman@FreeBSD.org> | 1994-08-08 15:37:35 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 1994-08-08 15:37:35 +0000 |
commit | a9a63df96be4572ff2e5003dbf5df8ae4d0daf30 (patch) | |
tree | 32510af4e8211c7ed351a1c37a9b2ba74c695c1f /usr.sbin/sysctl | |
parent | 274dc9f50a10dc8b34be61fa215b93e642fb9d21 (diff) | |
download | FreeBSD-src-a9a63df96be4572ff2e5003dbf5df8ae4d0daf30.zip FreeBSD-src-a9a63df96be4572ff2e5003dbf5df8ae4d0daf30.tar.gz |
Suppress irritating extra newline after kern.boottime.
Diffstat (limited to 'usr.sbin/sysctl')
-rw-r--r-- | usr.sbin/sysctl/sysctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.sbin/sysctl/sysctl.c b/usr.sbin/sysctl/sysctl.c index a342686..4dfa6f3 100644 --- a/usr.sbin/sysctl/sysctl.c +++ b/usr.sbin/sysctl/sysctl.c @@ -377,7 +377,7 @@ parse(string, flags) struct timeval *btp = (struct timeval *)buf; if (!nflag) - fprintf(stdout, "%s = %s\n", string, + fprintf(stdout, "%s = %s", string, ctime(&btp->tv_sec)); else fprintf(stdout, "%d\n", btp->tv_sec); |