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 /rfc2045/rfc2231.c | |
| parent | a307e734a37763fc25778adffc2cd5c0d0390555 (diff) | |
| download | courier-libs-40ed34ef54ac459116e2a37b63955c75a18a9441.tar.bz2 | |
Reconfigure against the standalone unicode library.
Diffstat (limited to 'rfc2045/rfc2231.c')
| -rw-r--r-- | rfc2045/rfc2231.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/rfc2045/rfc2231.c b/rfc2045/rfc2231.c index f0908e8..22c0c50 100644 --- a/rfc2045/rfc2231.c +++ b/rfc2045/rfc2231.c @@ -15,7 +15,7 @@  #include	<ctype.h>  #include	"rfc2045.h"  #include	"rfc822/rfc822.h" -#include	"unicode/unicode.h" +#include	<unicode.h>  /*  ** Deallocate a link list of rfc2231param structures. @@ -316,7 +316,7 @@ static int conv_unicode(char **text, const char *fromChset,  	if (!fromChset || !*fromChset)  		return 0; -	p=libmail_u_convert_tobuf(*text, fromChset, toChset, &err); +	p=unicode_convert_tobuf(*text, fromChset, toChset, &err);  	if (p && err)  	{ | 
