Make the struct imsgev structs static and with that ripd -fno-common clean.
authorclaudio <claudio@openbsd.org>
Tue, 19 Jan 2021 10:20:47 +0000 (10:20 +0000)
committerclaudio <claudio@openbsd.org>
Tue, 19 Jan 2021 10:20:47 +0000 (10:20 +0000)
usr.sbin/ripd/rde.c
usr.sbin/ripd/ripd.c
usr.sbin/ripd/ripe.c

index e6ffda9..cf7879d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rde.c,v 1.23 2021/01/19 10:18:56 claudio Exp $ */
+/*     $OpenBSD: rde.c,v 1.24 2021/01/19 10:20:47 claudio Exp $ */
 
 /*
  * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -41,8 +41,8 @@
 #define        MINIMUM(a, b)   (((a) < (b)) ? (a) : (b))
 
 struct ripd_conf       *rdeconf = NULL;
-struct imsgev          *iev_ripe;
-struct imsgev          *iev_main;
+static struct imsgev   *iev_ripe;
+static struct imsgev   *iev_main;
 
 void   rde_sig_handler(int, short, void *);
 __dead void rde_shutdown(void);
index cce8262..472cb6d 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ripd.c,v 1.34 2021/01/19 10:18:56 claudio Exp $ */
+/*     $OpenBSD: ripd.c,v 1.35 2021/01/19 10:20:47 claudio Exp $ */
 
 /*
  * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -58,8 +58,8 @@ int                    pipe_parent2rde[2];
 int                     pipe_ripe2rde[2];
 
 struct ripd_conf       *conf = NULL;
-struct imsgev          *iev_ripe;
-struct imsgev          *iev_rde;
+static struct imsgev   *iev_ripe;
+static struct imsgev   *iev_rde;
 
 pid_t                   ripe_pid = 0;
 pid_t                   rde_pid = 0;
index 9f55efb..9f462bc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ripe.c,v 1.29 2021/01/19 10:18:56 claudio Exp $ */
+/*     $OpenBSD: ripe.c,v 1.30 2021/01/19 10:20:47 claudio Exp $ */
 
 /*
  * Copyright (c) 2006 Michele Marchetto <mydecay@openbeer.it>
@@ -46,8 +46,8 @@ void           ripe_sig_handler(int, short, void *);
 __dead void     ripe_shutdown(void);
 
 struct ripd_conf       *oeconf = NULL;
-struct imsgev          *iev_main;
-struct imsgev          *iev_rde;
+static struct imsgev   *iev_main;
+static struct imsgev   *iev_rde;
 
 /* ARGSUSED */
 void