From fc55253b4e5749937bc9cb37b984d768209c7ff3 Mon Sep 17 00:00:00 2001 From: sthen <> Date: Tue, 16 Dec 2014 20:51:32 +0000 Subject: [PATCH] typo; ok deraadt --- src/lib/libc/stdlib/rand.c | 2 +- src/lib/libc/stdlib/random.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib/libc/stdlib/rand.c b/src/lib/libc/stdlib/rand.c index ee2fd44b..f163581e 100644 --- a/src/lib/libc/stdlib/rand.c +++ b/src/lib/libc/stdlib/rand.c @@ -55,7 +55,7 @@ rand(void) #if defined(APIWARN) __warn_references(rand, - "warning: rand() may return determinstic values, is that what you want?"); + "warning: rand() may return deterministic values, is that what you want?"); #endif void diff --git a/src/lib/libc/stdlib/random.c b/src/lib/libc/stdlib/random.c index 0838d0bb..96cced9a 100644 --- a/src/lib/libc/stdlib/random.c +++ b/src/lib/libc/stdlib/random.c @@ -1,4 +1,4 @@ -/* $OpenBSD: random.c,v 1.27 2014/12/16 20:42:36 deraadt Exp $ */ +/* $OpenBSD: random.c,v 1.28 2014/12/16 20:51:32 sthen Exp $ */ /* * Copyright (c) 1983 Regents of the University of California. * All rights reserved. @@ -418,5 +418,5 @@ random(void) #if defined(APIWARN) __warn_references(random, - "warning: random() may return determinstic values, is that what you want?"); + "warning: random() may return deterministic values, is that what you want?"); #endif