mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-05 09:02:04 -04:00
isc_base64_decodestring should take a const char *, not a char *
This commit is contained in:
parent
ee14337c77
commit
94178e98f8
2 changed files with 7 additions and 4 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: base64.c,v 1.21 2001/01/09 21:55:54 bwelling Exp $ */
|
||||
/* $Id: base64.c,v 1.22 2001/02/15 23:21:46 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -190,7 +190,9 @@ isc_base64_tobuffer(isc_lex_t *lexer, isc_buffer_t *target, int length) {
|
|||
}
|
||||
|
||||
isc_result_t
|
||||
isc_base64_decodestring(isc_mem_t *mctx, char *cstr, isc_buffer_t *target) {
|
||||
isc_base64_decodestring(isc_mem_t *mctx, const char *cstr,
|
||||
isc_buffer_t *target)
|
||||
{
|
||||
base64_decode_ctx_t ctx;
|
||||
|
||||
UNUSED(mctx);
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: base64.h,v 1.13 2001/01/09 21:56:43 bwelling Exp $ */
|
||||
/* $Id: base64.h,v 1.14 2001/02/15 23:21:47 bwelling Exp $ */
|
||||
|
||||
#ifndef ISC_BASE64_H
|
||||
#define ISC_BASE64_H 1
|
||||
|
|
@ -54,7 +54,8 @@ isc_base64_totext(isc_region_t *source, int wordlength,
|
|||
*/
|
||||
|
||||
isc_result_t
|
||||
isc_base64_decodestring(isc_mem_t *mctx, char *cstr, isc_buffer_t *target);
|
||||
isc_base64_decodestring(isc_mem_t *mctx, const char *cstr,
|
||||
isc_buffer_t *target);
|
||||
/*
|
||||
* Decode a null-terminated base64 string.
|
||||
*
|
||||
|
|
|
|||
Loading…
Reference in a new issue