Only include assert.h if we call assert()
authorjob <job@openbsd.org>
Tue, 29 Nov 2022 20:26:22 +0000 (20:26 +0000)
committerjob <job@openbsd.org>
Tue, 29 Nov 2022 20:26:22 +0000 (20:26 +0000)
OK tb@

usr.sbin/rpki-client/as.c
usr.sbin/rpki-client/crl.c
usr.sbin/rpki-client/gbr.c
usr.sbin/rpki-client/io.c
usr.sbin/rpki-client/ip.c
usr.sbin/rpki-client/parser.c
usr.sbin/rpki-client/rrdp.c
usr.sbin/rpki-client/rsync.c
usr.sbin/rpki-client/x509.c

index 5178218..e5975b7 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: as.c,v 1.8 2022/05/15 16:43:34 tb Exp $ */
+/*     $OpenBSD: as.c,v 1.9 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -17,7 +17,6 @@
 
 #include <sys/socket.h>
 
-#include <assert.h>
 #include <err.h>
 #include <stdarg.h>
 #include <stdint.h>
index b3df1b5..e1e5378 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: crl.c,v 1.17 2022/11/02 10:04:41 tb Exp $ */
+/*     $OpenBSD: crl.c,v 1.18 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -18,7 +18,6 @@
 #include <sys/socket.h>
 
 #include <arpa/inet.h>
-#include <assert.h>
 #include <err.h>
 #include <inttypes.h>
 #include <stdarg.h>
index 5cce585..936f65e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: gbr.c,v 1.17 2022/11/04 09:43:13 job Exp $ */
+/*     $OpenBSD: gbr.c,v 1.18 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org>
  *
@@ -15,7 +15,6 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <assert.h>
 #include <err.h>
 #include <stdarg.h>
 #include <stdint.h>
index f056ff1..9aedc58 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: io.c,v 1.20 2022/05/15 16:43:34 tb Exp $ */
+/*     $OpenBSD: io.c,v 1.21 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -19,7 +19,6 @@
 #include <sys/queue.h>
 #include <sys/socket.h>
 
-#include <assert.h>
 #include <err.h>
 #include <errno.h>
 #include <fcntl.h>
index 67f1564..c229fc2 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: ip.c,v 1.25 2022/05/15 16:43:34 tb Exp $ */
+/*     $OpenBSD: ip.c,v 1.26 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -18,7 +18,6 @@
 #include <sys/socket.h>
 #include <arpa/inet.h>
 
-#include <assert.h>
 #include <err.h>
 #include <stdarg.h>
 #include <stdlib.h>
index 5f4ac6a..a32ebfc 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: parser.c,v 1.79 2022/11/29 10:33:09 claudio Exp $ */
+/*     $OpenBSD: parser.c,v 1.80 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2019 Claudio Jeker <claudio@openbsd.org>
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
@@ -20,7 +20,6 @@
 #include <sys/tree.h>
 #include <sys/types.h>
 
-#include <assert.h>
 #include <err.h>
 #include <fcntl.h>
 #include <poll.h>
index 91904ff..3641898 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rrdp.c,v 1.26 2022/09/02 18:37:17 claudio Exp $ */
+/*     $OpenBSD: rrdp.c,v 1.27 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2020 Nils Fisher <nils_fisher@hotmail.com>
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
@@ -18,7 +18,6 @@
 #include <sys/queue.h>
 #include <sys/stat.h>
 
-#include <assert.h>
 #include <err.h>
 #include <errno.h>
 #include <fcntl.h>
index fbf9daf..ce1549a 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: rsync.c,v 1.44 2022/11/02 12:43:02 job Exp $ */
+/*     $OpenBSD: rsync.c,v 1.45 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -19,7 +19,6 @@
 #include <sys/stat.h>
 #include <sys/wait.h>
 #include <netinet/in.h>
-#include <assert.h>
 #include <err.h>
 #include <errno.h>
 #include <poll.h>
index c23b69d..8097e5e 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: x509.c,v 1.59 2022/11/26 12:02:37 job Exp $ */
+/*     $OpenBSD: x509.c,v 1.60 2022/11/29 20:26:22 job Exp $ */
 /*
  * Copyright (c) 2022 Theo Buehler <tb@openbsd.org>
  * Copyright (c) 2021 Claudio Jeker <claudio@openbsd.org>
@@ -19,7 +19,6 @@
 
 #include <sys/socket.h>
 
-#include <assert.h>
 #include <err.h>
 #include <stdarg.h>
 #include <stdlib.h>