summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-21 13:47:18 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-05-21 13:47:18 +0000
commit1f35d2485ce7375dda4190475bd3ac6690d3047f (patch)
tree85580504ae4dd8ce4312b680032936feb9a683d5 /ext
parent67cf354b465604d820ea51d4afcc14d681640a19 (diff)
* ext/date/date_strftime(date_strftime_with_tmx): "%v" means "%e-%b-%Y".
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31672 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/date/date_strftime.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/date/date_strftime.c b/ext/date/date_strftime.c
index 3596b52235..0820a26d9b 100644
--- a/ext/date/date_strftime.c
+++ b/ext/date/date_strftime.c
@@ -604,7 +604,7 @@ date_strftime_with_tmx(char *s, size_t maxsize, const char *format,
#ifdef VMS_EXT
case 'v': /* date as dd-bbb-YYYY */
- STRFTIME("%e-%^b-%4Y");
+ STRFTIME("%e-%b-%Y");
continue;
#endif