diff options
author | Neal H. Walfield <[email protected]> | 2016-02-23 19:36:07 +0000 |
---|---|---|
committer | Neal H. Walfield <[email protected]> | 2016-02-23 19:49:47 +0000 |
commit | 903466e124841cb29f518afa6b7706d490737ac3 (patch) | |
tree | afde9e1d3e16609068054bf2ea3d3fec0747b77b /g10/parse-packet.c | |
parent | g13: Add commands --suspend and --remove. (diff) | |
download | gnupg-903466e124841cb29f518afa6b7706d490737ac3.tar.gz gnupg-903466e124841cb29f518afa6b7706d490737ac3.zip |
common: More accurately name function.
* common/iobuf.c (iobuf_set_partial_block_mode): Rename from this...
(iobuf_set_partial_body_length_mode): ... to this. Update callers.
--
Signed-off-by: Neal H. Walfield <[email protected]>
Diffstat (limited to 'g10/parse-packet.c')
-rw-r--r-- | g10/parse-packet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/parse-packet.c b/g10/parse-packet.c index 38cd8c9c8..1be49b12a 100644 --- a/g10/parse-packet.c +++ b/g10/parse-packet.c @@ -581,7 +581,7 @@ parse (IOBUF inp, PACKET * pkt, int onlykeypkts, off_t * retpos, case PKT_ENCRYPTED: case PKT_ENCRYPTED_MDC: case PKT_COMPRESSED: - iobuf_set_partial_block_mode (inp, c & 0xff); + iobuf_set_partial_body_length_mode (inp, c & 0xff); pktlen = 0; /* To indicate partial length. */ partial = 1; break; |