From: kn Date: Thu, 30 Nov 2023 14:51:32 +0000 (+0000) Subject: Fold identical pledge cases, '#ifndef SMALL \n if (!resume)' equals 'else' X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=4e72439a61ba1f69a0f26c359da7ae49d222b18d;p=openbsd Fold identical pledge cases, '#ifndef SMALL \n if (!resume)' equals 'else' OK millert --- diff --git a/usr.bin/ftp/main.c b/usr.bin/ftp/main.c index 75d184e4115..93dd47a0b83 100644 --- a/usr.bin/ftp/main.c +++ b/usr.bin/ftp/main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: main.c,v 1.141 2023/11/22 02:20:54 kn Exp $ */ +/* $OpenBSD: main.c,v 1.142 2023/11/30 14:51:32 kn Exp $ */ /* $NetBSD: main.c,v 1.24 1997/08/18 10:20:26 lukem Exp $ */ /* @@ -616,13 +616,6 @@ main(volatile int argc, char *argv[]) if (argc > 0) { if (isurl(argv[0])) { if (pipeout) { -#ifndef SMALL - if (!resume) { - if (pledge("stdio rpath dns tty inet fattr", - NULL) == -1) - err(1, "pledge"); - } else -#endif /* !SMALL */ if (pledge("stdio rpath dns tty inet fattr", NULL) == -1) err(1, "pledge");