summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorClaudio Jeker <claudio@cvs.openbsd.org>2021-03-04 14:02:35 +0000
committerClaudio Jeker <claudio@cvs.openbsd.org>2021-03-04 14:02:35 +0000
commit60ba4c5f92b50e576072155fdb203276fb6bf235 (patch)
tree2487fee1926725f1d727b76e263412f0586b321e /usr.sbin
parent22803e9afe4ada2aa3e695ad096595f64cb41feb (diff)
Remove NOTREACHED marker, it should be obvious when the code is:
exit(rc); /* NOTREACHED */
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/rpki-client/rsync.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/rpki-client/rsync.c b/usr.sbin/rpki-client/rsync.c
index 2497b50335b..206475c54cc 100644
--- a/usr.sbin/rpki-client/rsync.c
+++ b/usr.sbin/rpki-client/rsync.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rsync.c,v 1.19 2021/02/23 14:25:29 claudio Exp $ */
+/* $OpenBSD: rsync.c,v 1.20 2021/03/04 14:02:34 claudio Exp $ */
/*
* Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
*
@@ -309,5 +309,4 @@ proc_rsync(char *prog, char *bind_addr, int fd)
msgbuf_clear(&msgq);
free(ids);
exit(rc);
- /* NOTREACHED */
}