commit - 820cc153e4d4553a0faba6fc09b9ac92570a7af4
commit + a0f179dc07bca3a9916c23a5a546c28ae7fad8e4
blob - 569c27aa2fe044ee1837851f521ed290eedc20e1
blob + 301c305863054d393f81669a78e84314a4e28db4
--- FICS/command.c
+++ FICS/command.c
Markus Uhlin 25/03/09 Fixed double free()
Markus Uhlin 25/03/11 Fixed memleak
Markus Uhlin 25/03/16 Fixed use of 32-bit 'time_t'
+ Markus Uhlin 25/07/28 Usage of 'int64_t'
*/
#include "stdinclude.h"
#include <sys/param.h>
#include <err.h>
+#include <inttypes.h>
+#include <stdint.h>
#include "command.h"
#include "command_list.h"
PUBLIC void
rscan_news(FILE *fp, int p, time_t lc)
{
- char *junkp = NULL;
char count[10] = { '\0' };
char junk[MAX_LINE_SIZE] = { '\0' };
- long int lval = 0;
+ char *junkp = NULL;
+ int64_t lval = 0;
time_t crtime = 0;
if (fgets(junk, sizeof junk, fp) == NULL ||
_Static_assert(ARRAY_SIZE(count) > 9, "Unexpected array size");
- if (sscanf(junk, "%ld %9s", &lval, count) != 2) {
+ if (sscanf(junk, ("%" SCNd64 " " "%9s"), &lval, count) != 2) {
warnx("%s: sscanf() error: too few items", __func__);
return;
}
PRIVATE void
check_news(int p, int admin)
{
-#define SCAN_JUNK "%ld %9s"
+#define SCAN_JUNK ("%" SCNd64 " " "%9s")
FILE *fp = NULL;
char count[10] = { '\0' };
char filename[MAX_FILENAME_SIZE] = { '\0' };
char junk[MAX_LINE_SIZE] = { '\0' };
char *junkp = NULL;
- long int lval = 0;
+ int64_t lval = 0;
time_t crtime = 0;
time_t lc = player_lastconnect(p);