Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-06-15 18:33:06 +0400
committerEric Andersen <andersen@codepoet.org>2002-06-15 18:33:06 +0400
commita7d0b41c08765f76dbb98022d15d51c6beffc4f3 (patch)
tree71a94d3d1e7dab51f4e204f0cd974edb94f1c49e /coreutils
parent47abc49c4ae7fb219f6ecafc36a3aea972468acb (diff)
Don't use pointless GNU-isms
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)
if (date_fmt == NULL) {
date_fmt = (rfc822
? (utc
- ? "%a, %_d %b %Y %H:%M:%S GMT"
- : "%a, %_d %b %Y %H:%M:%S %z")
+ ? "%a, %e %b %Y %H:%M:%S GMT"
+ : "%a, %e %b %Y %H:%M:%S %z")
: "%a %b %e %H:%M:%S %Z %Y");
} else if (*date_fmt == '\0') {