summaryrefslogtreecommitdiffstats
path: root/sqwebmail/auth.c
diff options
context:
space:
mode:
authorSam Varshavchik2014-01-12 13:26:54 -0500
committerSam Varshavchik2014-01-12 13:26:54 -0500
commit40ed34ef54ac459116e2a37b63955c75a18a9441 (patch)
treeb4239ed6454f45853de0be3c5a8266e310f7f0b1 /sqwebmail/auth.c
parenta307e734a37763fc25778adffc2cd5c0d0390555 (diff)
downloadcourier-libs-40ed34ef54ac459116e2a37b63955c75a18a9441.tar.bz2
Reconfigure against the standalone unicode library.
Diffstat (limited to 'sqwebmail/auth.c')
-rw-r--r--sqwebmail/auth.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sqwebmail/auth.c b/sqwebmail/auth.c
index 5a3b9e7..1c37a04 100644
--- a/sqwebmail/auth.c
+++ b/sqwebmail/auth.c
@@ -39,7 +39,7 @@
extern int check_sqwebpass(const char *);
extern char *sqwebmail_content_charset, *sqwebmail_system_charset;
-#include "unicode/unicode.h"
+#include <unicode.h>
const char *myhostname()
{
@@ -278,7 +278,7 @@ static char *uhdrbuf=0;
if (authcharset[0]
&& sqwebmail_content_charset && *sqwebmail_content_charset
- && (ufullname=libmail_u_convert_toutf8(fullname, authcharset,NULL)))
+ && (ufullname=unicode_convert_toutf8(fullname, authcharset,NULL)))
fullname = ufullname;
l=sizeof("\"\" <>")+strlen(address)+strlen(fullname);
@@ -316,7 +316,7 @@ static char *uhdrbuf=0;
if (ufullname) free(ufullname);
if (uhdrbuf) free(uhdrbuf);
- if ((uhdrbuf=libmail_u_convert_fromutf8(hdrbuf,
+ if ((uhdrbuf=unicode_convert_fromutf8(hdrbuf,
sqwebmail_content_charset,
NULL)) != NULL)
return (uhdrbuf);