File diff r7838:84af23a2da80 → r7839:e456d3331541
src/unix.cpp
Show inline comments
 
@@ -227,13 +227,13 @@ static const char *GetLocalCode()
 
static const char *convert_tofrom_fs(iconv_t convd, const char *name)
 
{
 
	static char buf[1024];
 
	/* Work around buggy iconv implementation where inbuf is wrongly typed as
 
	 * non-const. Correct implementation is at
 
	 * http://www.opengroup.org/onlinepubs/007908799/xsh/iconv.html */
 
#if defined (__GLIBC__) || defined (__GNU_LIBRARY__)
 
#ifdef HAVE_BROKEN_ICONV
 
	char *inbuf = (char*)name;
 
#else
 
	const char *inbuf = name;
 
#endif
 

	
 
	char *outbuf  = buf;