mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Rename a function.
* g10/cipher.c (cipher_filter): Rename to cipher_file_cfb.
This commit is contained in:
parent
5b24c41ba7
commit
15cf36f6a8
5 changed files with 10 additions and 9 deletions
|
@ -321,7 +321,7 @@ encrypt_simple (const char *filename, int mode, int use_seskey)
|
|||
|
||||
/* Register the cipher filter. */
|
||||
if (mode)
|
||||
iobuf_push_filter ( out, cipher_filter, &cfx );
|
||||
iobuf_push_filter ( out, cipher_filter_cfb, &cfx );
|
||||
|
||||
/* Register the compress filter. */
|
||||
if ( do_compress )
|
||||
|
@ -741,7 +741,7 @@ encrypt_crypt (ctrl_t ctrl, int filefd, const char *filename,
|
|||
cfx.datalen = filesize && !do_compress ? filesize : 0;
|
||||
|
||||
/* Register the cipher filter. */
|
||||
iobuf_push_filter (out, cipher_filter, &cfx);
|
||||
iobuf_push_filter (out, cipher_filter_cfb, &cfx);
|
||||
|
||||
/* Register the compress filter. */
|
||||
if (do_compress)
|
||||
|
@ -897,7 +897,7 @@ encrypt_filter (void *opaque, int control,
|
|||
return rc;
|
||||
}
|
||||
|
||||
iobuf_push_filter (a, cipher_filter, &efx->cfx);
|
||||
iobuf_push_filter (a, cipher_filter_cfb, &efx->cfx);
|
||||
|
||||
efx->header_okay = 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue