From: Ralph Dolmans Date: Wed, 29 Jan 2020 15:32:03 +0000 (+0100) Subject: - Fix misplaced parentheses from PR#156 X-Git-Tag: release-1.10.0rc1~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5fcae2f0e04f42a21138d9782c1c962b8e2edcf9;p=thirdparty%2Funbound.git - Fix misplaced parentheses from PR#156 --- diff --git a/smallapp/unbound-control.c b/smallapp/unbound-control.c index 7c363cdd9..8e9e9c98d 100644 --- a/smallapp/unbound-control.c +++ b/smallapp/unbound-control.c @@ -758,8 +758,8 @@ go_cmd(SSL* ssl, int fd, int quiet, int argc, char* argv[]) strcmp(argv[0], "local_zones_remove") == 0 || strcmp(argv[0], "local_datas") == 0 || strcmp(argv[0], "view_local_datas") == 0 || - strcmp(argv[0], "local_datas_remove") == 0) || - strcmp(argv[0], "view_local_datas_remove") == 0) { + strcmp(argv[0], "local_datas_remove") == 0 || + strcmp(argv[0], "view_local_datas_remove") == 0)) { send_file(ssl, fd, stdin, buf, sizeof(buf)); send_eof(ssl, fd); }