From 1e67e3109d9df74c9de60f0f6ee4d8f303c2d7bd Mon Sep 17 00:00:00 2001 From: Mateusz Guzik Date: Thu, 8 Jul 2021 11:31:43 +0000 Subject: [PATCH] setkey: drop an unused argument from postproc --- sbin/setkey/setkey.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sbin/setkey/setkey.c b/sbin/setkey/setkey.c index 9e896996a25..d556a842f04 100644 --- a/sbin/setkey/setkey.c +++ b/sbin/setkey/setkey.c @@ -61,7 +61,7 @@ int get_supported(void); void sendkeyshort(u_int, uint8_t); void promisc(void); int sendkeymsg(char *, size_t); -int postproc(struct sadb_msg *, int); +int postproc(struct sadb_msg *); const char *numstr(int); void shortdump_hdr(void); void shortdump(struct sadb_msg *); @@ -355,7 +355,7 @@ again: kdebug_sadb((struct sadb_msg *)rbuf); printf("\n"); } - if (postproc(msg, l) < 0) + if (postproc(msg) < 0) break; } while (msg->sadb_msg_errno || msg->sadb_msg_seq); @@ -370,7 +370,7 @@ end: } int -postproc(struct sadb_msg *msg, int len) +postproc(struct sadb_msg *msg) { if (msg->sadb_msg_errno != 0) {