tprint correct file name - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c4791fa52a41d7eb7ee29d7fa57ca8fb4fe558a3
(DIR) parent ae3265db67077540c53416ff1fafd3f19e0edd7b
(HTM) Author: rsc <devnull@localhost>
Date: Sat, 29 Oct 2005 17:41:06 +0000
print correct file name
Diffstat:
M src/lib9/truerand.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/src/lib9/truerand.c b/src/lib9/truerand.c
t@@ -15,7 +15,7 @@ truerand(void)
if(randfd < 0 || read(randfd, buf, 1) != 1)
randfd = open(randfile="/dev/srandom", OREAD); /* OpenBSD */
if(randfd < 0)
- sysfatal("can't open /dev/random: %r");
+ sysfatal("can't open %s: %r", randfile);
fcntl(randfd, F_SETFD, FD_CLOEXEC);
}
for(i=0; i<sizeof(buf); i += n)