aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-06-15 14:33:06 +0000
committerEric Andersen <andersen@codepoet.org>2002-06-15 14:33:06 +0000
commita7d0b41c08765f76dbb98022d15d51c6beffc4f3 (patch)
tree71a94d3d1e7dab51f4e204f0cd974edb94f1c49e
parent47abc49c4ae7fb219f6ecafc36a3aea972468acb (diff)
downloadbusybox-w32-a7d0b41c08765f76dbb98022d15d51c6beffc4f3.tar.gz
busybox-w32-a7d0b41c08765f76dbb98022d15d51c6beffc4f3.tar.bz2
busybox-w32-a7d0b41c08765f76dbb98022d15d51c6beffc4f3.zip
Don't use pointless GNU-isms
-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') {