Only include stdarg.h, if we call any of va_{start,end}()
authorjob <job@openbsd.org>
Tue, 29 Nov 2022 20:41:32 +0000 (20:41 +0000)
committerjob <job@openbsd.org>
Tue, 29 Nov 2022 20:41:32 +0000 (20:41 +0000)
OK tb@

12 files changed:
usr.sbin/rpki-client/as.c
usr.sbin/rpki-client/aspa.c
usr.sbin/rpki-client/cert.c
usr.sbin/rpki-client/cms.c
usr.sbin/rpki-client/crl.c
usr.sbin/rpki-client/gbr.c
usr.sbin/rpki-client/ip.c
usr.sbin/rpki-client/main.c
usr.sbin/rpki-client/mft.c
usr.sbin/rpki-client/roa.c
usr.sbin/rpki-client/validate.c
usr.sbin/rpki-client/x509.c

index e5975b7..c4c2dd1 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: as.c,v 1.9 2022/11/29 20:26:22 job Exp $ */
+/*     $OpenBSD: as.c,v 1.10 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -18,7 +18,6 @@
 #include <sys/socket.h>
 
 #include <err.h>
-#include <stdarg.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
index e7a948d..79bafc0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: aspa.c,v 1.8 2022/11/26 17:14:40 job Exp $ */
+/*     $OpenBSD: aspa.c,v 1.9 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2022 Job Snijders <job@fastly.com>
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
@@ -19,7 +19,6 @@
 
 #include <assert.h>
 #include <err.h>
-#include <stdarg.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
index 04a387d..87c0bc2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cert.c,v 1.98 2022/11/26 17:14:40 job Exp $ */
+/*     $OpenBSD: cert.c,v 1.99 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  * Copyright (c) 2021 Job Snijders <job@openbsd.org>
@@ -23,7 +23,6 @@
 #include <assert.h>
 #include <err.h>
 #include <inttypes.h>
-#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index 72e9972..795ebf7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: cms.c,v 1.24 2022/11/28 18:33:56 tb Exp $ */
+/*     $OpenBSD: cms.c,v 1.25 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -17,7 +17,6 @@
 
 #include <assert.h>
 #include <err.h>
-#include <stdarg.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
index e1e5378..69f3013 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: crl.c,v 1.18 2022/11/29 20:26:22 job Exp $ */
+/*     $OpenBSD: crl.c,v 1.19 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -20,7 +20,6 @@
 #include <arpa/inet.h>
 #include <err.h>
 #include <inttypes.h>
-#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index 936f65e..c3644ca 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gbr.c,v 1.18 2022/11/29 20:26:22 job Exp $ */
+/*     $OpenBSD: gbr.c,v 1.19 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org>
  *
@@ -16,7 +16,6 @@
  */
 
 #include <err.h>
-#include <stdarg.h>
 #include <stdint.h>
 #include <fcntl.h>
 #include <stdlib.h>
index c229fc2..89c3088 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip.c,v 1.26 2022/11/29 20:26:22 job Exp $ */
+/*     $OpenBSD: ip.c,v 1.27 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -19,7 +19,6 @@
 #include <arpa/inet.h>
 
 #include <err.h>
-#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index afa1878..390ea90 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.225 2022/11/28 17:47:01 claudio Exp $ */
+/*     $OpenBSD: main.c,v 1.226 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -33,6 +33,7 @@
 #include <fnmatch.h>
 #include <poll.h>
 #include <pwd.h>
+#include <stdarg.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <signal.h>
index ed9cd18..d9ab5df 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: mft.c,v 1.79 2022/11/26 12:02:37 job Exp $ */
+/*     $OpenBSD: mft.c,v 1.80 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -20,7 +20,6 @@
 #include <ctype.h>
 #include <err.h>
 #include <limits.h>
-#include <stdarg.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
index ef0564a..b2367dc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: roa.c,v 1.57 2022/11/26 17:14:40 job Exp $ */
+/*     $OpenBSD: roa.c,v 1.58 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -18,7 +18,6 @@
 
 #include <assert.h>
 #include <err.h>
-#include <stdarg.h>
 #include <stdint.h>
 #include <stdlib.h>
 #include <string.h>
index b75f526..322089b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: validate.c,v 1.49 2022/11/29 11:45:03 claudio Exp $ */
+/*     $OpenBSD: validate.c,v 1.50 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -23,7 +23,6 @@
 #include <err.h>
 #include <fcntl.h>
 #include <inttypes.h>
-#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
index 8097e5e..8c03a89 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: x509.c,v 1.60 2022/11/29 20:26:22 job Exp $ */
+/*     $OpenBSD: x509.c,v 1.61 2022/11/29 20:41:32 job Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
@@ -20,7 +20,6 @@
 #include <sys/socket.h>
 
 #include <err.h>
-#include <stdarg.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>