diff options
author | June McEnroe <june@causal.agency> | 2022-02-27 10:28:40 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-02-27 11:12:26 -0500 |
commit | 9c718c5df514e2a20c7d04e1db1716fdbab45a04 (patch) | |
tree | 0645cd11cf0382906afde12e54fff66725506b69 /compat/getentropy_aix.c | |
parent | tls: Revert accidentally(?) reverted upstream (diff) | |
parent | Import LibreSSL 3.5.0 (diff) | |
download | libretls-9c718c5df514e2a20c7d04e1db1716fdbab45a04.tar.gz libretls-9c718c5df514e2a20c7d04e1db1716fdbab45a04.zip |
Merge LibreSSL 3.5.0
Diffstat (limited to 'compat/getentropy_aix.c')
-rw-r--r-- | compat/getentropy_aix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compat/getentropy_aix.c b/compat/getentropy_aix.c index 422e685..7fb857e 100644 --- a/compat/getentropy_aix.c +++ b/compat/getentropy_aix.c @@ -1,4 +1,4 @@ -/* $OpenBSD: getentropy_aix.c,v 1.7 2020/05/17 14:44:20 deraadt Exp $ */ +/* $OpenBSD: getentropy_aix.c,v 1.8 2021/10/24 21:24:20 deraadt Exp $ */ /* * Copyright (c) 2015 Michael Felt <aixtools@gmail.com> @@ -134,7 +134,7 @@ start: #ifdef O_CLOEXEC flags |= O_CLOEXEC; #endif - fd = open(path, flags, 0); + fd = open(path, flags); if (fd == -1) { if (errno == EINTR) goto start; |