Patch from Bernhard Fischer to make a bunch of symbols static
which were otherwise cluttering the global namespace.
This commit is contained in:
@@ -117,9 +117,9 @@ static char *safe_fgets(char *s, int size, FILE *stream)
|
||||
/*
|
||||
* Base64-encode character string
|
||||
* oops... isn't something similar in uuencode.c?
|
||||
* It would be better to use already existing code
|
||||
* XXX: It would be better to use already existing code
|
||||
*/
|
||||
char *base64enc(unsigned char *p, char *buf, int len) {
|
||||
static char *base64enc(unsigned char *p, char *buf, int len) {
|
||||
|
||||
char al[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"
|
||||
"0123456789+/";
|
||||
|
Reference in New Issue
Block a user