Changeset: c6969b8883e4 for MonetDB
URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c6969b8883e4
Modified Files:
clients/mapiclient/dump.c
Branch: Jul2015
Log Message:
Escape correct character (DELETE instead of LATIN SMALL LETTER Y WITH
DIAERESIS).
diffs (12 lines):
diff --git a/clients/mapiclient/dump.c b/clients/mapiclient/dump.c
--- a/clients/mapiclient/dump.c
+++ b/clients/mapiclient/dump.c
@@ -38,7 +38,7 @@ quoted_print(stream *f, const char *s, c
mnstr_write(f, "\\t", 1, 2);
break;
default:
- if ((0 < *s && *s < 32) || *s == '\377')
+ if ((0 < *s && *s < 32) || *s == '\177')
mnstr_printf(f, "\\%03o", *s & 0377);
else
mnstr_write(f, s, 1, 1);
_______________________________________________
checkin-list mailing list
[email protected]
https://www.monetdb.org/mailman/listinfo/checkin-list