WL#2835: Base64

Fixes after Jonas review
This commit is contained in:
lars@mysql.com 2005-10-18 16:18:08 +02:00
parent 0abcffcb5d
commit 588add2667
2 changed files with 1 additions and 4 deletions

View file

@ -102,7 +102,7 @@ pos(unsigned char c)
#define SKIP_SPACE(src, i, size) \
{ \
while (i < size && my_isspace(default_charset_info, * src)) \
while (i < size && my_isspace(&my_charset_latin1, * src)) \
{ \
i++; \
src++; \

View file

@ -6,6 +6,3 @@ INCLUDES += -I$(srcdir) \
-I$(top_srcdir)/ndb/include/util \
-I$(top_srcdir)/ndb/include/portlib \
-I$(top_srcdir)/ndb/include/logger
LDADD += \
$(top_builddir)/mysys/libmysys.a