summaryrefslogtreecommitdiff
path: root/smbutil.c
diff options
context:
space:
mode:
authorGuy Harris <gharris@sonic.net>2023-01-30 23:03:16 -0800
committerFrancois-Xavier Le Bail <devel.fx.lebail@orange.fr>2023-02-02 15:43:24 +0100
commit7578e1c04ee280dda50c4c2813e7d55f539c6501 (patch)
treed4b27ce6c93663119fd7bc36ca21db68668d9923 /smbutil.c
parent4d0dd4fbc300188657ad437a1ce794606a87cda8 (diff)
downloadtcpdump-7578e1c04ee280dda50c4c2813e7d55f539c6501.tar.gz
Have a common routine for converting dates and times to strings.
Have a routine that takes a buffer, a strftime format, and a struct tm * as arguments, and: * checks whether the struct tm * is null and, if so, returns a string indicating that the date and time couldn't be converted; * otherwise, passes it to strftime(), along with the buffer and the format argument and, if strftime() returns 0, meaning the string didn't fit into the buffer and thus that the buffer's contents are undefined, returns a string indicating that the date and time didn't fit into the buffer; * otherwise, returns a pointer to the buffer. Call that routine instead of directly calling strftime() in printers; that prevents printing a buffer with undefined data if the buffer isn't big enough for the string. Also, when generating file names using an strftime format, check the return value of strftime() to make sure the buffer didn't overflow.
Diffstat (limited to 'smbutil.c')
-rw-r--r--smbutil.c16
1 files changed, 5 insertions, 11 deletions
diff --git a/smbutil.c b/smbutil.c
index 6e509ecf..f33a323f 100644
--- a/smbutil.c
+++ b/smbutil.c
@@ -768,9 +768,8 @@ smb_fdata1(netdissect_options *ndo,
case 'T':
{
time_t t;
- struct tm *lt;
const char *tstring;
- char buffer[sizeof("Www Mmm dd hh:mm:ss yyyyy\n")];
+ char buffer[sizeof("Www Mmm dd hh:mm:ss yyyyy")];
uint32_t x;
switch (atoi(fmt + 1)) {
@@ -800,16 +799,11 @@ smb_fdata1(netdissect_options *ndo,
break;
}
if (t != 0) {
- lt = localtime(&t);
- if (lt != NULL) {
- strftime(buffer, sizeof(buffer), "%a %b %e %T %Y%n", lt);
- tstring = buffer;
- }
- else
- tstring = "(Can't convert time)\n";
+ tstring = nd_format_time(buffer, sizeof(buffer), "%a %b %e %T %Y",
+ localtime(&t));
} else
- tstring = "NULL\n";
- ND_PRINT("%s", tstring);
+ tstring = "NULL";
+ ND_PRINT("%s\n", tstring);
fmt++;
while (ND_ASCII_ISDIGIT(*fmt))
fmt++;