diff options
author | 2014-10-26 12:54:18 +0000 | |
---|---|---|
committer | 2014-10-26 12:54:18 +0000 | |
commit | aad8872523677bc2f42755d116c463f586c649dd (patch) | |
tree | d7d2b296498b5f976c5f601ae04dcfa4f634ce0e /lib/libc/stdio/mktemp.3 | |
parent | when using the local enqueuer, if the internal SMTP session fails, copy the (diff) | |
download | wireguard-openbsd-aad8872523677bc2f42755d116c463f586c649dd.tar.xz wireguard-openbsd-aad8872523677bc2f42755d116c463f586c649dd.zip |
The open flags param to mkostemps() should be "flags" not "oflags"
for consistency with the rest of the manual.
Diffstat (limited to 'lib/libc/stdio/mktemp.3')
-rw-r--r-- | lib/libc/stdio/mktemp.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/stdio/mktemp.3 b/lib/libc/stdio/mktemp.3 index c25fe06df0f..decc165d32c 100644 --- a/lib/libc/stdio/mktemp.3 +++ b/lib/libc/stdio/mktemp.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: mktemp.3,v 1.53 2014/08/31 06:36:30 jmc Exp $ +.\" $OpenBSD: mktemp.3,v 1.54 2014/10/26 12:54:18 millert Exp $ .\" .\" Copyright (c) 1989, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -27,7 +27,7 @@ .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF .\" SUCH DAMAGE. .\" -.Dd $Mdocdate: August 31 2014 $ +.Dd $Mdocdate: October 26 2014 $ .Dt MKTEMP 3 .Os .Sh NAME @@ -53,7 +53,7 @@ .Ft int .Fn mkostemp "char *template" "int flags" .Ft int -.Fn mkostemps "char *template" "int suffixlen" "int oflags" +.Fn mkostemps "char *template" "int suffixlen" "int flags" .Sh DESCRIPTION The .Fn mktemp |