diff options
author | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-15 00:11:23 (EST) |
---|---|---|
committer | ticktock35 <ticktock35@e8e0d7a0-c8d9-11dd-a880-a1081c7ac358> | 2008-12-15 00:11:23 (EST) |
commit | d076e67e6f8fe63ae199d44609bf171b82306085 (patch) | |
tree | 38c0c9dce7f1c66fd76952aa470017499eb6ef43 | |
parent | bd09c115217e960cc1dff73d322e3e9581cf2d33 (diff) |
libopkg: remove default progress bar
git-svn-id: http://opkg.googlecode.com/svn/trunk@81 e8e0d7a0-c8d9-11dd-a880-a1081c7ac358
-rw-r--r-- | libopkg/opkg_download.c | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/libopkg/opkg_download.c b/libopkg/opkg_download.c index ebbde51..8bf6b8d 100644 --- a/libopkg/opkg_download.c +++ b/libopkg/opkg_download.c @@ -58,23 +58,6 @@ curl_progress_func (char* url, opkg_cb_download_progress (p, url); return 0; } - - /* skip progress bar if we haven't done started yet - * this prevents drawing the progress bar if we receive an error such as - * file not found */ - if (t == 0) - return 0; - - printf ("\r%3d%% |", p); - for (i = 1; i < 73; i++) - { - if (i <= p * 0.73) - printf ("="); - else - printf ("-"); - } - printf ("|"); - fflush(stdout); return 0; } @@ -88,8 +71,6 @@ int opkg_download(opkg_conf_t *conf, const char *src, const char *dest_file_name opkg_message(conf,OPKG_NOTICE,"Downloading %s\n", src); - fflush(stdout); - if (str_starts_with(src, "file:")) { int ret; const char *file_src = src + 5; @@ -157,10 +138,6 @@ int opkg_download(opkg_conf_t *conf, const char *src, const char *dest_file_name else return -1; - /* if no custom progress handler was set, we need to clear the default progress bar */ - if (!opkg_cb_download_progress) - printf ("\n"); - err = file_move(tmp_file_location, dest_file_name); free(tmp_file_location); |