RESERVE_CONFIG_BUFFER --> bb_common_bufsiz1

This commit is contained in:
"Vladimir N. Oleynik"
2005-10-15 13:45:32 +00:00
parent 6f347ef9dc
commit a2eec6051f
3 changed files with 10 additions and 8 deletions

View File

@ -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;