freebsd-ports/math/prng/files/patch-examples_pairs.c
Cy Schubert 4b8362f61d Fix after gets(3) retirement using gets_s(3).
Bump PORTREVISION as this is a security issue too.

PR:		222796
MFH:		2019Q3
2019-09-02 05:00:43 +00:00

10 lines
307 B
C

--- examples/pairs.c.orig 2000-10-17 08:39:02.000000000 -0700
+++ examples/pairs.c 2019-09-01 21:02:29.348451000 -0700
@@ -53,6 +53,7 @@
#include <stdlib.h>
#include <string.h>
#include "prng.h"
+#define gets(_a) gets_s(_a, sizeof(_a))
struct prng_struct *generator;
char outfile[200] = "pairs.out";