diff options
author | Daniel Stenberg <daniel@haxx.se> | 2000-06-16 13:17:44 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2000-06-16 13:17:44 +0000 |
commit | 648973549106c48e835a35f2963c559c2f242f77 (patch) | |
tree | e684e58cc5eb307e0f7dc9ce02166951de61bd17 /lib | |
parent | fb9c5650ceffad60e9e396ee4798d2467139efd4 (diff) | |
download | curl-648973549106c48e835a35f2963c559c2f242f77.tar.gz |
mode was replaced with callback in the progress struct
Diffstat (limited to 'lib')
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index c0cf969d1..124d95e3b 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -195,7 +195,7 @@ struct Progress { double current_speed; /* uses the currently fastest transfer */ - int mode; /* what kind of progress meter to display */ + bool callback; /* set when progress callback is used */ int width; /* screen width at download start */ int flags; /* see progress.h */ double timespent; |