Skip to content

Commit

Permalink
Fixing error in errorLog.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
jholloc committed Jul 26, 2023
1 parent 8ca77c9 commit 9decee9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/clientserver/errorLog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ void udaErrorLog(CLIENT_BLOCK client_block, REQUEST_BLOCK request_block, UDA_ERR
#ifndef _WIN32
asctime_r(broken, accessdate);
#else
asctime_s(accessdate, DATELENGTH, broken);
asctime_s(accessdate, UDA_DATE_LENGTH, broken);
#endif

convertNonPrintable2(accessdate);
Expand Down

0 comments on commit 9decee9

Please sign in to comment.