1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-30 03:26:23 -04:00

[base64] This if is not needed

This commit is contained in:
Witold Filipczyk 2020-09-15 21:22:41 +02:00
parent d731d5901d
commit 23b346d353

View File

@ -63,10 +63,6 @@ base64_encode_bin(register unsigned char *in, int inlen, int *outlen)
return outstr;
}
/* Base64 decoding is used only with the CONFIG_FORMHIST, CONFIG_GSSAPI or CONFIG_DATA
feature, so i'll #ifdef it */
#if defined(CONFIG_FORMHIST) || defined(CONFIG_GSSAPI) || defined(CONFIG_DATA)
unsigned char *
base64_decode(register unsigned char *in)
{
@ -159,5 +155,3 @@ decode_error:
mem_free(outstr);
return NULL;
}
#endif /* CONFIG_FORMHIST */