Skip to content
Snippets Groups Projects
Commit 9c310713 authored by rswindell's avatar rswindell
Browse files

If iniSetDateTime() is used to set a value to 0, set it to "Never" rather than

"0x0".
parent 71ba05d0
No related branches found
No related tags found
No related merge requests found
......@@ -474,7 +474,9 @@ char* iniSetDateTime(str_list_t* list, const char* section, const char* key
char tstr[32];
char* p;
if((p=ctime_r(&value,tstr))==NULL)
if(value==0)
SAFECOPY(str,"Never");
else if((p=ctime_r(&value,tstr))==NULL)
SAFEPRINTF(str,"0x%lx",value);
else if(!include_time) /* reformat into "Mon DD YYYY" */
safe_snprintf(str,sizeof(str),"%.3s %.2s %.4s" ,p+4,p+8,p+20);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment