mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
WL#2835: Base64
Fixes after Jonas review
This commit is contained in:
parent
0abcffcb5d
commit
588add2667
2 changed files with 1 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue