summaryrefslogtreecommitdiff
path: root/usr.bin/jot/jot.1
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2003-12-18 11:51:14 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2003-12-18 11:51:14 +0000
commitdace038fd36b3595ae719b5005e33e0d8ec295de (patch)
treef42a220ca8e66cbcf17564a6af5a21317b78c32c /usr.bin/jot/jot.1
parent500d47bdcfc062c26442b82c44d9c2763124417e (diff)
random numbers are obtained via arc4random(3), not random(3);
from FreeBSD PR 54879, forwarded by otto@; ok otto@
Diffstat (limited to 'usr.bin/jot/jot.1')
-rw-r--r--usr.bin/jot/jot.18
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/jot/jot.1 b/usr.bin/jot/jot.1
index 7e863473fed..4024f15068a 100644
--- a/usr.bin/jot/jot.1
+++ b/usr.bin/jot/jot.1
@@ -1,4 +1,4 @@
-.\" $OpenBSD: jot.1,v 1.11 2003/12/15 23:24:20 jmc Exp $
+.\" $OpenBSD: jot.1,v 1.12 2003/12/18 11:51:13 jmc Exp $
.\" $NetBSD: jot.1,v 1.2 1994/11/14 20:27:36 jtc Exp $
.\"
.\" Copyright (c) 1993
@@ -136,7 +136,7 @@ representing the corresponding value in ASCII.
The last argument must be a real number.
.Pp
Random numbers are obtained through
-.Xr random 3 .
+.Xr arc4random 3 .
The name
.Nm
derives in part from
@@ -193,5 +193,5 @@ To print all lines 80 characters or longer:
.Xr expand 1 ,
.Xr rs 1 ,
.Xr yes 1 ,
-.Xr printf 3 ,
-.Xr random 3
+.Xr arc4random 3 ,
+.Xr printf 3