diff options
author | David Shaw <[email protected]> | 2003-04-23 21:18:39 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-04-23 21:18:39 +0000 |
commit | 874214d0a0a0754d8fc48e57b066c778d3869e44 (patch) | |
tree | c2176ae3e2181f4069acf0652513e18261f4493b /g10/progress.c | |
parent | * Makefile.am, options.in: Rename options.in to options since it no longer (diff) | |
download | gnupg-874214d0a0a0754d8fc48e57b066c778d3869e44.tar.gz gnupg-874214d0a0a0754d8fc48e57b066c778d3869e44.zip |
* import.c (import_revoke_cert): Remove ultimate trust when revoking an
ultimately trusted key.
* keyedit.c (sign_uids): Allow replacing expired signatures. Allow
duplicate signatures with --expert.
* pkclist.c (check_signatures_trust): Don't display a null fingerprint
when checking a signature with --always-trust enabled.
* filter.h (progress_filter_context_t), progress.c (handle_progress),
plaintext.c (ask_for_detached_datafile, hash_datafiles): Fix compiler
warnings. Make "what" constant.
* build-packet.c (do_plaintext): Do not create invalid literal packets
with >255-byte names.
Diffstat (limited to 'g10/progress.c')
-rw-r--r-- | g10/progress.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/g10/progress.c b/g10/progress.c index 7313e29e5..0c6f49486 100644 --- a/g10/progress.c +++ b/g10/progress.c @@ -24,6 +24,7 @@ #include "iobuf.h" #include "filter.h" #include "status.h" +#include "util.h" #include "options.h" /**************** @@ -82,7 +83,7 @@ progress_filter (void *opaque, int control, } void -handle_progress (progress_filter_context_t *pfx, IOBUF inp, char *name) +handle_progress (progress_filter_context_t *pfx, IOBUF inp, const char *name) { off_t filesize = 0; |