From 10927d911232ff5b224587f32aa68b8506777905 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Tue, 18 Mar 2008 00:11:41 +0100 Subject: [PATCH] Avoid Latin-1 chars. --- test/tstsoap1.c | 2 +- test/tstsoap2.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/tstsoap1.c b/test/tstsoap1.c index 11ad088..fa57214 100644 --- a/test/tstsoap1.c +++ b/test/tstsoap1.c @@ -19,7 +19,7 @@ void tst(void) xmlDocPtr doc; xmlNodePtr top; #if 0 - const char *val = "jordbær"; /* makes xmlDocDumpMemory hang .. */ + const char *val = "jordb" "\xe6" "r"; /* makes xmlDocDumpMemory hang .. */ #else const char *val = "jordbaer"; /* OK */ #endif diff --git a/test/tstsoap2.c b/test/tstsoap2.c index 230d403..30e613e 100644 --- a/test/tstsoap2.c +++ b/test/tstsoap2.c @@ -31,7 +31,7 @@ static void tst_srw(void) YAZ_CHECK(sr); YAZ_CHECK(p); #if 0 - sr->u.request->query.cql = "jordbær"; + sr->u.request->query.cql = "jordb" "\xe6" "r"; #else sr->u.request->query.cql = "jordbaer"; #endif -- 1.7.10.4