diff options
author | Werner Koch <wk@gnupg.org> | 2007-03-08 15:16:15 +0100 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-03-08 15:16:15 +0100 |
commit | e0bbbb8a7f9fae74fd30b978061ed8d359427c81 (patch) | |
tree | 772040b3b166badcd34f808992e2612567647830 /sm/decrypt.c | |
parent | Add extra flushs (diff) | |
download | gnupg2-e0bbbb8a7f9fae74fd30b978061ed8d359427c81.tar.xz gnupg2-e0bbbb8a7f9fae74fd30b978061ed8d359427c81.zip |
Preparing the 2.0.3 release
Diffstat (limited to 'sm/decrypt.c')
-rw-r--r-- | sm/decrypt.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sm/decrypt.c b/sm/decrypt.c index 70d48c983..48be8a014 100644 --- a/sm/decrypt.c +++ b/sm/decrypt.c @@ -148,7 +148,7 @@ prepare_decryption (ctrl_t ctrl, const char *hexkeygrip, const char *desc, decrypt it and store it inoutbuf which has a maximum size of maxoutlen. The valid bytes in outbuf should be return in outlen. Due to different buffer sizes or different length of input and - output, it may happen that fewer bytes are process or fewer bytes + output, it may happen that fewer bytes are processed or fewer bytes are written. */ static gpg_error_t decrypt_filter (void *arg, @@ -165,7 +165,7 @@ decrypt_filter (void *arg, if (maxoutlen < 2*parm->blklen) return gpg_error (GPG_ERR_BUG); - /* make some space becuase we will later need an extra block at the end */ + /* Make some space because we will later need an extra block at the end. */ maxoutlen -= blklen; if (parm->helpblocklen) @@ -298,7 +298,7 @@ gpgsm_decrypt (ctrl_t ctrl, int in_fd, FILE *out_fp) goto leave; } - /* parser loop */ + /* Parser loop. */ do { rc = ksba_cms_parse (cms, &stopreason); |