diff options
author | eadler <eadler@FreeBSD.org> | 2014-02-16 02:33:59 +0000 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2014-02-16 02:33:59 +0000 |
commit | b16d23de194cf6bb2f1039f77f43fcdc99f8d975 (patch) | |
tree | e543ce6d6cf534bb81dbe0ae00f45a6dfc01d070 /lib/libutil | |
parent | 96706ee32d45a0a239399443fc1444e1d4c2a7ed (diff) | |
download | FreeBSD-src-b16d23de194cf6bb2f1039f77f43fcdc99f8d975.zip FreeBSD-src-b16d23de194cf6bb2f1039f77f43fcdc99f8d975.tar.gz |
MFC r261824:
libutil/pw_util.3: Fix two prototypes.
Diffstat (limited to 'lib/libutil')
-rw-r--r-- | lib/libutil/pw_util.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libutil/pw_util.3 b/lib/libutil/pw_util.3 index 7ef0657..6c449ba 100644 --- a/lib/libutil/pw_util.3 +++ b/lib/libutil/pw_util.3 @@ -48,13 +48,13 @@ .In pwd.h .In libutil.h .Ft int -.Fn pw_copy "int ffd" "int tfd" "const struct passwd *pw" "const struct passwd *oldpw" +.Fn pw_copy "int ffd" "int tfd" "const struct passwd *pw" "struct passwd *oldpw" .Ft "struct passwd *" .Fn pw_dup "const struct passwd *pw" .Ft int .Fn pw_edit "int nosetuid" .Ft int -.Fn pw_equal "const struct passwd *pw1" "const struct passwd pw2" +.Fn pw_equal "const struct passwd *pw1" "const struct passwd *pw2" .Ft void .Fn pw_fini "void" .Ft int |