commit ffe9c6bc1e4fbbae829f3867187aeab4ef075c38 from: Markus Uhlin date: Sat Mar 7 22:41:35 2026 UTC Made parameter const commit - 0874b7f8953d87e50774d644c341496324c8733a commit + ffe9c6bc1e4fbbae829f3867187aeab4ef075c38 blob - 50b31dea75f34c679cc55063c1129d758428e0be blob + de020e62a53a8d086d0aa39611404a0acebbc722 --- FICS/utils.c +++ FICS/utils.c @@ -845,7 +845,7 @@ strtime(struct tm *stm) } PUBLIC char * -fix_time(char *old_time) +fix_time(const char *old_time) { char date[5] = { '\0' }; char day[5] = { '\0' }; blob - 416003b470b2d778153ed4f84f0dae25476dfca6 blob + 21761a749d8abf9a51c7d44d0250457dbe26ac61 --- FICS/utils.h +++ FICS/utils.h @@ -67,7 +67,7 @@ extern char *eatwhite(char *); extern char *eatword(char *); extern char *file_bplayer(char *); extern char *file_wplayer(char *); -extern char *fix_time(char *); +extern char *fix_time(const char *); extern char *getword(char *); extern char *hms(int, int, int, int); extern char *hms_desc(int);