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/html.c | |
| parent | a307e734a37763fc25778adffc2cd5c0d0390555 (diff) | |
| download | courier-libs-40ed34ef54ac459116e2a37b63955c75a18a9441.tar.bz2 | |
Reconfigure against the standalone unicode library.
Diffstat (limited to 'sqwebmail/html.c')
| -rw-r--r-- | sqwebmail/html.c | 10 | 
1 files changed, 5 insertions, 5 deletions
| diff --git a/sqwebmail/html.c b/sqwebmail/html.c index 8c2c316..f9d91e1 100644 --- a/sqwebmail/html.c +++ b/sqwebmail/html.c @@ -8,7 +8,7 @@  #include "html.h" -#include "unicode/unicode.h" +#include <unicode.h>  #include "rfc2045/rfc2045.h"  #include <stdlib.h>  #include <string.h> @@ -1290,15 +1290,15 @@ static char *resolve_url(struct htmlfilter_info *p)  	size_t size;  	char *cp; -	libmail_u_convert_handle_t h= -		libmail_u_convert_fromu_init("utf-8", &buf, &size, 1); +	unicode_convert_handle_t h= +		unicode_convert_fromu_init("utf-8", &buf, &size, 1);  	if (h)  	{ -		libmail_u_convert_uc(h, unicode_buf_ptr(&p->value), +		unicode_convert_uc(h, unicode_buf_ptr(&p->value),  				     unicode_buf_len(&p->value)); -		if (libmail_u_convert_deinit(h, NULL)) +		if (unicode_convert_deinit(h, NULL))  			buf=NULL;  	}  	else | 
