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 /common/iobuf.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 '')
-rw-r--r-- | common/iobuf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/iobuf.c b/common/iobuf.c index f5bbfb2d2..6a9060a0e 100644 --- a/common/iobuf.c +++ b/common/iobuf.c @@ -2513,7 +2513,7 @@ iobuf_get_fname_nonnull (iobuf_t a) * LEN is the first length byte on read, but ignored on writes. */ void -iobuf_set_partial_block_mode (iobuf_t a, size_t len) +iobuf_set_partial_body_length_mode (iobuf_t a, size_t len) { block_filter_ctx_t *ctx = xcalloc (1, sizeof *ctx); |