aboutsummaryrefslogtreecommitdiffstats
path: root/g10/sign.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2006-04-03 10:13:23 +0000
committerWerner Koch <[email protected]>2006-04-03 10:13:23 +0000
commit256f67675f84ee02d842d14c93bfc8d6383b65b1 (patch)
treef1df73e6997df666dc3d97db1b590babe98a4750 /g10/sign.c
parent* getkey.c (get_pubkey_byname): Fix missing auto_key_retrieve unlock. (diff)
downloadgnupg-256f67675f84ee02d842d14c93bfc8d6383b65b1.tar.gz
gnupg-256f67675f84ee02d842d14c93bfc8d6383b65b1.zip
About to release 1.4.3gnupg-1.4.3
Diffstat (limited to '')
-rw-r--r--g10/sign.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/g10/sign.c b/g10/sign.c
index 925fef461..c0ae6c1af 100644
--- a/g10/sign.c
+++ b/g10/sign.c
@@ -917,7 +917,9 @@ sign_file( STRLIST filenames, int detached, STRLIST locusr,
goto leave;
}
- /* setup the inner packet */
+ write_status (STATUS_BEGIN_SIGNING);
+
+ /* Setup the inner packet. */
if( detached ) {
if( multifile ) {
STRLIST sl;
@@ -1283,6 +1285,8 @@ sign_symencrypt_file (const char *fname, STRLIST locusr)
goto leave;
}
+ write_status (STATUS_BEGIN_SIGNING);
+
/* Pipe data through all filters; i.e. write the signed stuff */
/*(current filters: zip - encrypt - armor)*/
rc = write_plaintext_packet (out, inp, fname, opt.textmode ? 't':'b');