X-Git-Url: http://git.archive.openwrt.org/?p=project%2Fuclient.git;a=blobdiff_plain;f=uclient-fetch.c;fp=uclient-fetch.c;h=6b6d2fe9aa16947c0086014c7c6dacd9ff1510fe;hp=065742eeed3378167b234cb664efb19750af26e0;hb=6b89c6ae65d2a1ca34f2d874773f2f6fb4ac59ff;hpb=007a17f894dd5985165395a6fe7348256cb60a8b 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); }