minor KNF found while hunting for a bug
authorderaadt <deraadt@openbsd.org>
Wed, 7 Apr 2021 16:06:37 +0000 (16:06 +0000)
committerderaadt <deraadt@openbsd.org>
Wed, 7 Apr 2021 16:06:37 +0000 (16:06 +0000)
usr.sbin/rpki-client/http.c
usr.sbin/rpki-client/main.c

index 58067ee..250ba22 100644 (file)
@@ -1,4 +1,4 @@
-/*      $OpenBSD: http.c,v 1.19 2021/04/07 14:26:21 claudio Exp $  */
+/*      $OpenBSD: http.c,v 1.20 2021/04/07 16:06:37 deraadt Exp $  */
 /*
  * Copyright (c) 2020 Nils Fisher <nils_fisher@hotmail.com>
  * Copyright (c) 2020 Claudio Jeker <claudio@openbsd.org>
@@ -1176,6 +1176,7 @@ proc_http(char *bind_addr, int fd)
                active_connections = 0;
                for (i = 0; i < MAX_CONNECTIONS; i++) {
                        struct http_connection *conn = http_conns[i];
+
                        if (conn == NULL) {
                                pfds[i].fd = -1;
                                continue;
index 3069175..dc7d254 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.130 2021/04/01 16:40:05 tb Exp $ */
+/*     $OpenBSD: main.c,v 1.131 2021/04/07 16:06:37 deraadt Exp $ */
 /*
  * Copyright (c) 2019 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -572,7 +572,7 @@ tal_load_default(const char *tals[], size_t max)
                        err(1, NULL);
                tals[s++] = path;
        }
-       closedir (dirp);
+       closedir(dirp);
        return s;
 }