diff options
author | Roland McGrath <roland@gnu.org> | 1998-12-05 18:02:45 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1998-12-05 18:02:45 +0000 |
commit | 685c3086ea026ba41ca2c2085f64af1766104d66 (patch) | |
tree | 4e79a3443955f3ed38cddf1930d9654fd1e2403e | |
parent | 83ce8c14859fbaac297f1c0e3a39e15cd89ad81e (diff) | |
download | glibc-685c3086ea026ba41ca2c2085f64af1766104d66.tar glibc-685c3086ea026ba41ca2c2085f64af1766104d66.tar.gz glibc-685c3086ea026ba41ca2c2085f64af1766104d66.tar.bz2 glibc-685c3086ea026ba41ca2c2085f64af1766104d66.zip |
1998-12-05 Roland McGrath <roland@baalperazim.frob.com>
* time/strptime.c: Fix unterminated comment in last change.
-rw-r--r-- | time/strptime.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/strptime.c b/time/strptime.c index a26da5a88c..e5879b15e8 100644 --- a/time/strptime.c +++ b/time/strptime.c @@ -548,10 +548,10 @@ strptime_internal (buf, format, tm, decided) case 'y': /* Match year within century. */ get_number (0, 99); - /* The "Year 2000 :The Millennium Rollover" paper suggests that + /* The "Year 2000: The Millennium Rollover" paper suggests that values in the range 69-99 refer to the twentieth century. */ tm->tm_year = val >= 69 ? val : val + 100; - /* Indicate that we want to use the century, if specified + /* Indicate that we want to use the century, if specified. */ want_century = 1; break; case 'Y': |