summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjmc <jmc@openbsd.org>2003-12-18 11:51:13 +0000
committerjmc <jmc@openbsd.org>2003-12-18 11:51:13 +0000
commit3fa9fd63668f122fb7baba557e643fb74b611399 (patch)
tree8b929fc045cbb9663ce83d17721cf6629ebfd6d4
parentPermit ethernet multicast addresses, as used by some HA/failover solutions. Suggested by and ok markus@. (diff)
downloadwireguard-openbsd-3fa9fd63668f122fb7baba557e643fb74b611399.tar.xz
wireguard-openbsd-3fa9fd63668f122fb7baba557e643fb74b611399.zip
random numbers are obtained via arc4random(3), not random(3);
from FreeBSD PR 54879, forwarded by otto@; ok otto@
-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