07acf4
From fe274b8f965582fdf97e6c46f90b9e7c124b0b8b Mon Sep 17 00:00:00 2001
07acf4
From: Florian Festi <ffesti@redhat.com>
07acf4
Date: Fri, 16 Dec 2022 15:50:12 +0100
07acf4
Subject: [PATCH] rpm2archive: Don't print usage on no arguments
07acf4
07acf4
given as we want to default to reading from stdin and writing to stdout in
07acf4
that case.
07acf4
---
07acf4
 rpm2archive.c | 4 ----
07acf4
 1 file changed, 4 deletions(-)
07acf4
07acf4
diff --git a/rpm2archive.c b/rpm2archive.c
07acf4
index 09da8d16b..53f047f58 100644
07acf4
--- a/rpm2archive.c
07acf4
+++ b/rpm2archive.c
07acf4
@@ -241,10 +241,6 @@ int main(int argc, const char *argv[])
07acf4
 	    exit(EXIT_FAILURE);
07acf4
 	}
07acf4
     }
07acf4
-    if (argc < 2 || poptGetNextOpt(optCon) == 0) {
07acf4
-	poptPrintUsage(optCon, stderr, 0);
07acf4
-	exit(EXIT_FAILURE);
07acf4
-    }
07acf4
 
07acf4
     rpmts ts = rpmtsCreate();
07acf4
     rpmVSFlags vsflags = 0;
07acf4
-- 
07acf4
2.38.1
07acf4