void-packages/srcpkgs/liquidwar/patches/liquidwar-5.6.5-ovflfix.patch
q66 7d876c8a4c liquidwar: update to 5.6.5
Also make the `--disable-asm` correct.
2019-01-27 12:49:13 -02:00

18 lines
705 B
Diff

--- src/wwwsrv.c.old 2010-10-26 14:16:31.000000000 +0200
+++ src/wwwsrv.c 2010-10-26 14:17:35.000000000 +0200
@@ -100,12 +100,12 @@
data->privacy = privacy;
data->log = log;
- strncpy (data->metaserver, metaserver, URL_SIZE);
+ strncpy (data->metaserver, metaserver, sizeof(data->metaserver));
data->port = port;
data->busy_players = busy_players;
data->max_players = max_players;
- strncpy (data->password, password, PASSWORD_SIZE);
- strncpy (data->comment, comment, COMMENT_SIZE);
+ strncpy (data->password, password, sizeof(data->password));
+ strncpy (data->comment, comment, sizeof(data->comment));
}
/*------------------------------------------------------------------*/