diff options
author | archie <archie@FreeBSD.org> | 1999-11-02 22:46:42 +0000 |
---|---|---|
committer | archie <archie@FreeBSD.org> | 1999-11-02 22:46:42 +0000 |
commit | 71ff24eb062b0e46efa862cb9769dd91357344e4 (patch) | |
tree | f379e55c4071e2df2aa688445973227b22b0c19f /sys/netncp/ncp_nls.h | |
parent | 52125b012db4133c7d43ed834200fb3375856a2f (diff) | |
download | FreeBSD-src-71ff24eb062b0e46efa862cb9769dd91357344e4.zip FreeBSD-src-71ff24eb062b0e46efa862cb9769dd91357344e4.tar.gz |
Change structure field named 'toupper' to 'to_upper' to avoid conflict
with the macro of the same name. Same thing for 'tolower'.
Diffstat (limited to 'sys/netncp/ncp_nls.h')
-rw-r--r-- | sys/netncp/ncp_nls.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/netncp/ncp_nls.h b/sys/netncp/ncp_nls.h index 1bec4a7..e5e06b3 100644 --- a/sys/netncp/ncp_nls.h +++ b/sys/netncp/ncp_nls.h @@ -43,8 +43,8 @@ #define NWHP_NOSTRICT 0x20 /* pretend to be a case insensitive */ struct ncp_nlstables { - u_char *tolower; /* local charset to lower case */ - u_char *toupper; /* local charset to upper case */ + u_char *to_lower; /* local charset to lower case */ + u_char *to_upper; /* local charset to upper case */ u_char *n2u; /* NetWare to Unix */ u_char *u2n; int opt; /* may depend on context */ @@ -83,4 +83,4 @@ void ncp_path2unix(char *src, char *dst, int len, struct ncp_nlstables *nt); #endif /* !KERNEL */ -#endif /* _NCP_NCP_NLS_H_ */
\ No newline at end of file +#endif /* _NCP_NCP_NLS_H_ */ |