From: Niels Möller Date: Sun, 16 Nov 2003 18:28:55 +0000 (+0100) Subject: Comment fix, it's BASE64_ENCODE_FINAL_LENGTH, not BASE64_ENCODE_FINAL_SIZE. X-Git-Tag: nettle_1.8_release_20040110~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=23226b5d162f9efb26b66e8f35e8e233b652d043;p=thirdparty%2Fnettle.git Comment fix, it's BASE64_ENCODE_FINAL_LENGTH, not BASE64_ENCODE_FINAL_SIZE. Rev: src/nettle/base64.h:1.13 --- diff --git a/base64.h b/base64.h index 1e1c7ed5..6ca0f1c8 100644 --- a/base64.h +++ b/base64.h @@ -81,7 +81,7 @@ base64_encode_update(struct base64_encode_ctx *ctx, const uint8_t *src); /* DST should point to an area of size at least - * BASE64_ENCODE_FINAL_SIZE */ + * BASE64_ENCODE_FINAL_LENGTH */ unsigned base64_encode_final(struct base64_encode_ctx *ctx, uint8_t *dst);