date: -R shouldn't use locale
This commit is contained in:
@@ -32,10 +32,16 @@
|
|||||||
#define DATE_OPT_TIMESPEC 0x20
|
#define DATE_OPT_TIMESPEC 0x20
|
||||||
#define DATE_OPT_HINT 0x40
|
#define DATE_OPT_HINT 0x40
|
||||||
|
|
||||||
|
static void xputenv(char *s)
|
||||||
|
{
|
||||||
|
if (putenv(s) != 0)
|
||||||
|
bb_error_msg_and_die(bb_msg_memory_exhausted);
|
||||||
|
}
|
||||||
|
|
||||||
static void maybe_set_utc(int opt)
|
static void maybe_set_utc(int opt)
|
||||||
{
|
{
|
||||||
if ((opt & DATE_OPT_UTC) && putenv("TZ=UTC0") != 0)
|
if (opt & DATE_OPT_UTC)
|
||||||
bb_error_msg_and_die(bb_msg_memory_exhausted);
|
xputenv("TZ=UTC0");
|
||||||
}
|
}
|
||||||
|
|
||||||
int date_main(int argc, char **argv)
|
int date_main(int argc, char **argv)
|
||||||
@@ -205,6 +211,8 @@ format_utc:
|
|||||||
date_fmt[i] = (opt & DATE_OPT_UTC) ? 'Z' : 'z';
|
date_fmt[i] = (opt & DATE_OPT_UTC) ? 'Z' : 'z';
|
||||||
}
|
}
|
||||||
} else if (opt & DATE_OPT_RFC2822) {
|
} else if (opt & DATE_OPT_RFC2822) {
|
||||||
|
/* Undo busybox.c for date -R */
|
||||||
|
setlocale(LC_TIME, "C");
|
||||||
strcpy(date_fmt, "%a, %d %b %Y %H:%M:%S ");
|
strcpy(date_fmt, "%a, %d %b %Y %H:%M:%S ");
|
||||||
i = 22;
|
i = 22;
|
||||||
goto format_utc;
|
goto format_utc;
|
||||||
|
|||||||
Reference in New Issue
Block a user