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:
author"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-15 17:45:32 +0400
committer"Vladimir N. Oleynik" <dzo@simtreas.ru>2005-10-15 17:45:32 +0400
commita2eec6051f81b272521da3001f52d1e43abde6df (patch)
treee04993b192fc956e4d0fd28b0f4220fef795348c /coreutils/date.c
parent6f347ef9dc540aaea025c0575e586817cd85cc8e (diff)
RESERVE_CONFIG_BUFFER --> bb_common_bufsiz1
Diffstat (limited to 'coreutils/date.c')
-rw-r--r--coreutils/date.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/coreutils/date.c b/coreutils/date.c
index 6593df970..e9ec51044 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -282,10 +282,8 @@ int date_main(int argc, char **argv)
{
/* Print OUTPUT (after ALL that!) */
- RESERVE_CONFIG_BUFFER(t_buff, 201);
- strftime(t_buff, 200, date_fmt, &tm_time);
- puts(t_buff);
- RELEASE_CONFIG_BUFFER(t_buff);
+ strftime(bb_common_bufsiz1, 200, date_fmt, &tm_time);
+ puts(bb_common_bufsiz1);
}
return EXIT_SUCCESS;