aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-06-15 14:33:06 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2002-06-15 14:33:06 +0000
commit3922e7117a2620b41641d4c2f638ba349921eb02 (patch)
tree71a94d3d1e7dab51f4e204f0cd974edb94f1c49e /coreutils
parentc9cebd1474cebc7baf548e26e9111c3e7d8d0fb9 (diff)
downloadbusybox-w32-3922e7117a2620b41641d4c2f638ba349921eb02.tar.gz
busybox-w32-3922e7117a2620b41641d4c2f638ba349921eb02.tar.bz2
busybox-w32-3922e7117a2620b41641d4c2f638ba349921eb02.zip
Don't use pointless GNU-isms
git-svn-id: svn://busybox.net/trunk/busybox@4893 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/date.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/date.c b/coreutils/date.c
index 6db3e2838..41ceee29d 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -222,8 +222,8 @@ int date_main(int argc, char **argv)
222 if (date_fmt == NULL) { 222 if (date_fmt == NULL) {
223 date_fmt = (rfc822 223 date_fmt = (rfc822
224 ? (utc 224 ? (utc
225 ? "%a, %_d %b %Y %H:%M:%S GMT" 225 ? "%a, %e %b %Y %H:%M:%S GMT"
226 : "%a, %_d %b %Y %H:%M:%S %z") 226 : "%a, %e %b %Y %H:%M:%S %z")
227 : "%a %b %e %H:%M:%S %Z %Y"); 227 : "%a %b %e %H:%M:%S %Z %Y");
228 228
229 } else if (*date_fmt == '\0') { 229 } else if (*date_fmt == '\0') {