Commit fed89301 authored by unknown's avatar unknown

WL#2835: Base64

Fixes after Jonas review


mysys/base64.c:
  Changed charset by recommendation of bar
ndb/config/type_util.mk.am:
  Removed redundant library
parent 2a49fa62
......@@ -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++; \
......
......@@ -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
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment