diff options
author | brian <brian@FreeBSD.org> | 1997-08-10 16:37:33 +0000 |
---|---|---|
committer | brian <brian@FreeBSD.org> | 1997-08-10 16:37:33 +0000 |
commit | 0c083de4cc7c49ebf98103447e02052cbcb7ee26 (patch) | |
tree | 8c09009f06add63c46cc89375d10f8f84394d53c /bin/date | |
parent | e2cda524da9ffbfdadc52c8c4d4f27be676498be (diff) | |
download | FreeBSD-src-0c083de4cc7c49ebf98103447e02052cbcb7ee26.zip FreeBSD-src-0c083de4cc7c49ebf98103447e02052cbcb7ee26.tar.gz |
Remove forgotten debug statement.
Diffstat (limited to 'bin/date')
-rw-r--r-- | bin/date/date.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index 006a0c7..14b2b67 100644 --- a/bin/date/date.c +++ b/bin/date/date.c @@ -30,7 +30,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: date.c,v 1.15 1997/08/09 22:34:04 brian Exp $ + * $Id: date.c,v 1.16 1997/08/10 16:36:59 brian Exp $ */ #ifndef lint @@ -254,7 +254,6 @@ setthetime(fmt, p) logwtmp("|", "date", ""); tv.tv_sec = tval; tv.tv_usec = 0; -fprintf(stderr, "Set to \"%s\"\n", asctime(lt)); if (settimeofday(&tv, (struct timezone *)NULL)) err(1, "settimeofday (timeval)"); logwtmp("{", "date", ""); |