summaryrefslogtreecommitdiff
path: root/time.c
diff options
context:
space:
mode:
authorknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-05 11:22:47 +0000
committerknu <knu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2007-03-05 11:22:47 +0000
commit4f46294b7d2fd58f219711081e06ce35b0afde19 (patch)
tree063483f7dc0e062c5366e8bd3e0007ce44043f13 /time.c
parenta30657e815d70c52b04d9220de30eb9b0b235909 (diff)
* time.c (time_to_s): Correct the wrong format which did not
really conform to RFC 2822; pointed out by: OHARA Shigeki <os at iij.ad.jp> in [ruby-dev:30487]. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11996 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'time.c')
-rw-r--r--time.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/time.c b/time.c
index d919c631f4..dd5153db62 100644
--- a/time.c
+++ b/time.c
@@ -1239,11 +1239,11 @@ time_asctime(time)
* time.to_s => string
*
* Returns a string representing <i>time</i>. Equivalent to calling
- * <code>Time#strftime</code> with a format string of ``<code>%a</code>
- * <code>%b</code> <code>%d</code> <code>%H:%M:%S</code>
- * <code>%Z</code> <code>%Y</code>''.
+ * <code>Time#strftime</code> with a format string of ``<code>%a,</code>
+ * <code>%d</code> <code>%b</code> <code>%H:%M:%S</code>
+ * <code>%Z</code> <code>%Y</code>'' (the RFC 2822 style).
*
- * Time.now.to_s #=> "Wed Apr 09 08:56:04 CDT 2003"
+ * Time.now.to_s #=> "Wed 09 Apr 08:56:04 CDT 2003"
*/
static VALUE
@@ -1274,7 +1274,7 @@ time_to_s(time)
sign = '-';
off = -off;
}
- sprintf(buf2, "%%a, %%b %%d %%Y %%H:%%M:%%S %c%02d%02d",
+ sprintf(buf2, "%%a, %%d %%b %%Y %%H:%%M:%%S %c%02d%02d",
sign, (int)(off/3600), (int)(off%3600/60));
len = strftime(buf, 128, buf2, &tobj->tm);
return rb_str_new(buf, len);