From 6b89c6ae65d2a1ca34f2d874773f2f6fb4ac59ff Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Tue, 5 Jul 2016 11:19:38 +0200 Subject: [PATCH] uclient-fetch: add support for --quiet Signed-off-by: Felix Fietkau --- uclient-fetch.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/uclient-fetch.c b/uclient-fetch.c index 065742e..6b6d2fe 100644 --- a/uclient-fetch.c +++ b/uclient-fetch.c @@ -503,6 +503,7 @@ enum { L_CONTINUE, L_PROXY, L_NO_PROXY, + L_QUIET, }; static const struct option longopts[] = { @@ -517,6 +518,7 @@ static const struct option longopts[] = { [L_CONTINUE] = { "continue", no_argument }, [L_PROXY] = { "proxy", required_argument }, [L_NO_PROXY] = { "no-proxy", no_argument }, + [L_QUIET] = { "quiet", no_argument }, {} }; @@ -584,6 +586,9 @@ int main(int argc, char **argv) case L_NO_PROXY: proxy = false; break; + case L_QUIET: + quiet = true; + break; default: return usage(progname); } -- 2.30.2