From 6099790621b5fe7c12f5b9a3b4ab5b6e3d952e57 Mon Sep 17 00:00:00 2001 From: matz Date: Tue, 25 Nov 2008 15:28:22 +0000 Subject: * strftime.c (STRFTIME): should add padding for %[xXrR] etc. [ruby-dev:37185] fix: #792 git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@20357 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- strftime.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'strftime.c') diff --git a/strftime.c b/strftime.c index 7913c792a5..e2c8d5fabd 100644 --- a/strftime.c +++ b/strftime.c @@ -295,7 +295,12 @@ rb_strftime(char *s, size_t maxsize, const char *format, const struct tm *timept do { \ i = strftime(s, endp - s, fmt, tm); \ if (!i) return 0; \ - s += i; \ + if (precision > i) {\ + memmove(s + precision - i, s, i);\ + memset(s, padding ? padding : ' ', precision - i); \ + s += precision; \ + }\ + else s += i; \ } while (0) if (*format != '%') { -- cgit v1.2.3