diff options
author | danny <danny@FreeBSD.org> | 1997-04-16 05:59:21 +0000 |
---|---|---|
committer | danny <danny@FreeBSD.org> | 1997-04-16 05:59:21 +0000 |
commit | 15afdcdb78add5ad4e311b7e03d3538e28f96c0a (patch) | |
tree | 538ce8d0c0bb9bafdae437d0d81a157c7c01ce3d /bin/date/date.c | |
parent | a07e70af85c12241e44d8305caf5a643bd30022c (diff) | |
download | FreeBSD-src-15afdcdb78add5ad4e311b7e03d3538e28f96c0a.zip FreeBSD-src-15afdcdb78add5ad4e311b7e03d3538e28f96c0a.tar.gz |
Fix typo in comment; Document in an example that years beyond 1999
are handled; fix typo in same example.
Diffstat (limited to 'bin/date/date.c')
-rw-r--r-- | bin/date/date.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/date/date.c b/bin/date/date.c index 4d7e74e..63707aa 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.10 1997/02/22 14:02:33 peter Exp $ + * $Id: date.c,v 1.11 1997/03/28 15:24:16 imp Exp $ */ #ifndef lint @@ -117,7 +117,7 @@ main(argc, argv) /* * If -d or -t, set the timezone or daylight savings time; this - * doesn't belong here, there kernel should not know about either. + * doesn't belong here; the kernel should not know about either. */ if (set_timezone && settimeofday((struct timeval *)NULL, &tz)) err(1, "settimeofday (timezone)"); |