Commit fed89301 authored by unknown's avatar unknown
Browse files

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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++;                                                      \
+0 −3
Original line number Diff line number Diff line
@@ -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