diff options
author | ed <ed@FreeBSD.org> | 2012-02-12 18:29:56 +0000 |
---|---|---|
committer | ed <ed@FreeBSD.org> | 2012-02-12 18:29:56 +0000 |
commit | 23524b572c9490078007a68a1760546e22a8184d (patch) | |
tree | ac73d0fee5bb41748009d87a44b179ab6b7d87bc /share/man/man4/ng_mppc.4 | |
parent | f5c5ba680655abbc307ee2fa88397fc168cbdcad (diff) | |
download | FreeBSD-src-23524b572c9490078007a68a1760546e22a8184d.zip FreeBSD-src-23524b572c9490078007a68a1760546e22a8184d.tar.gz |
Globally replace u_int*_t from (non-contributed) man pages.
The reasoning behind this, is that if we are consistent in our
documentation about the uint*_t stuff, people will be less tempted to
write new code that uses the non-standard types.
I am not going to bump the man page dates, as these changes can be
considered style nits. The meaning of the man pages is unaffected.
MFC after: 1 month
Diffstat (limited to 'share/man/man4/ng_mppc.4')
-rw-r--r-- | share/man/man4/ng_mppc.4 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man4/ng_mppc.4 b/share/man/man4/ng_mppc.4 index a146228..df3b3a7 100644 --- a/share/man/man4/ng_mppc.4 +++ b/share/man/man4/ng_mppc.4 @@ -106,7 +106,7 @@ as an argument: /* Configuration for a session */ struct ng_mppc_config { u_char enable; /* enable */ - u_int32_t bits; /* config bits */ + uint32_t bits; /* config bits */ u_char startkey[MPPE_KEY_LEN]; /* start key */ }; |