From ae52963abe9f45e980dac54f420a308281364005 Mon Sep 17 00:00:00 2001 From: kento2 Date: Wed, 9 Sep 2026 03:30:42 +0200 Subject: [PATCH] make ARGS optional in nobotgate-access --- nobotgate-access.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nobotgate-access.c b/nobotgate-access.c index e5a4d76..e161316 100644 --- a/nobotgate-access.c +++ b/nobotgate-access.c @@ -31,9 +31,9 @@ int main(int argc, char **argv) default: dieusage(); } } - argc-=i;argv+=i; + argc-=i; argv+=i; - if (argc<2) dieusage(); + if (argc<1) dieusage(); if (consume) consume_headers();