uclient-fetch: add support for --quiet
[project/uclient.git] / uclient-fetch.c
index 065742eeed3378167b234cb664efb19750af26e0..6b6d2fe9aa16947c0086014c7c6dacd9ff1510fe 100644 (file)
@@ -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);
                        }