s/u_int32_t/unsigned/ for systems that do not define u_int32_t
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@9340 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -154,8 +154,8 @@ do { \
|
||||
if (isc) break; \
|
||||
if (isextra || ((c & 0177) == ' ') || (flag & VIS_OCTAL)) { \
|
||||
*dst++ = '\\'; \
|
||||
*dst++ = (u_char)(((u_int32_t)(u_char)c >> 6) & 03) + '0'; \
|
||||
*dst++ = (u_char)(((u_int32_t)(u_char)c >> 3) & 07) + '0'; \
|
||||
*dst++ = (u_char)(((unsigned)(u_char)c >> 6) & 03) + '0'; \
|
||||
*dst++ = (u_char)(((unsigned)(u_char)c >> 3) & 07) + '0'; \
|
||||
*dst++ = (c & 07) + '0'; \
|
||||
} else { \
|
||||
if ((flag & VIS_NOSLASH) == 0) *dst++ = '\\'; \
|
||||
|
Reference in New Issue
Block a user