Skip to content
Snippets Groups Projects
Commit 914b6b48 authored by rswindell's avatar rswindell
Browse files

Y2K fix.

parent b12e031b
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,7 @@
#include "sbbs.h"
#define FILELIST_VER "2.11"
#define FILELIST_VER "2.12"
#define MAX_NOTS 25
......@@ -263,7 +263,7 @@ if(!unix)
else {
t=gmtime(&unix);
sprintf(str,"%02u/%02u/%02u",t->tm_mon+1,t->tm_mday
,t->tm_year); }
,t->tm_year%100); }
return(str);
}
......
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