diff options
| author | Sam Varshavchik | 2014-01-12 13:26:54 -0500 | 
|---|---|---|
| committer | Sam Varshavchik | 2014-01-12 13:26:54 -0500 | 
| commit | 40ed34ef54ac459116e2a37b63955c75a18a9441 (patch) | |
| tree | b4239ed6454f45853de0be3c5a8266e310f7f0b1 /sqwebmail/ldaplist.c | |
| parent | a307e734a37763fc25778adffc2cd5c0d0390555 (diff) | |
| download | courier-libs-40ed34ef54ac459116e2a37b63955c75a18a9441.tar.bz2 | |
Reconfigure against the standalone unicode library.
Diffstat (limited to 'sqwebmail/ldaplist.c')
| -rw-r--r-- | sqwebmail/ldaplist.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/sqwebmail/ldaplist.c b/sqwebmail/ldaplist.c index e584294..9bc5f6a 100644 --- a/sqwebmail/ldaplist.c +++ b/sqwebmail/ldaplist.c @@ -35,7 +35,7 @@ extern void output_attrencoded_oknl_fp(const char *, FILE *);  extern const char *sqwebmail_content_charset; -#include	"unicode/unicode.h" +#include	<unicode.h>  void	ldaplist()  { @@ -157,7 +157,7 @@ static char *getfilter()  	if (!*p)  		return NULL; -	return libmail_u_convert_toutf8(p, sqwebmail_content_charset, NULL); +	return unicode_convert_toutf8(p, sqwebmail_content_charset, NULL);  }  struct search_info { @@ -198,7 +198,7 @@ static int parsesearch(const char *cn, const char *mail,  	char *cn_native; -	cn_native=libmail_u_convert_fromutf8(cn, sqwebmail_content_charset, +	cn_native=unicode_convert_fromutf8(cn, sqwebmail_content_charset,  					     NULL);  	if (cn_native) | 
