fetch: print the URL while connecting
authorFelix Fietkau <nbd@openwrt.org>
Thu, 8 May 2014 21:20:12 +0000 (23:20 +0200)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 8 May 2014 21:20:12 +0000 (23:20 +0200)
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
uclient-fetch.c

index 733a5b955612ad5534ad97f3f9911f330ae1d1b1..d4db10834953c33c71ef0a4a1207d42abf563194 100644 (file)
@@ -145,7 +145,7 @@ static void msg_connecting(struct uclient *cl)
                return;
 
        uclient_get_addr(addr, &port, &cl->remote_addr);
-       fprintf(stderr, "Connecting to %s %s:%d\n", cl->url->host, addr, port);
+       fprintf(stderr, "Connecting to %s:%d\n", addr, port);
 }
 
 static void init_request(struct uclient *cl)
@@ -327,6 +327,9 @@ int main(int argc, char **argv)
                        auth_str = username;
        }
 
+       if (!quiet)
+               fprintf(stderr, "Downloading '%s'\n", argv[0]);
+
        cl = uclient_new(argv[0], auth_str, &cb);
        if (!cl) {
                fprintf(stderr, "Failed to allocate uclient context\n");