1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

Move stuff from data to text

(This used to be commit 49f06a2fa70e469bcb5fe17852af011dac32994b)
This commit is contained in:
Volker Lendecke 2007-12-05 21:09:57 +01:00 committed by Volker Lendecke
parent e9e33adc7c
commit cc1664416d

View File

@ -52,9 +52,9 @@
*
*/
char magic_char = '~';
static char magic_char = '~';
static char basechars[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_-!@#$%";
static const char basechars[] = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ_-!@#$%";
#define MANGLE_BASE (sizeof(basechars)/sizeof(char)-1)
static unsigned char chartest[256] = { 0 };