summaryrefslogtreecommitdiffstats
path: root/pw
diff options
context:
space:
mode:
authorDavid Nugent <davidn@FreeBSD.org>1996-12-17 01:43:30 +0000
committerDavid Nugent <davidn@FreeBSD.org>1996-12-17 01:43:30 +0000
commit6f942679935ca267ade32d4e5a6bfd7d9cf26b14 (patch)
tree26e6c000b0dacc5ab0b035366d435990d8d78fdb /pw
parent8e2576489faf8bc850d815512bcc9f185e565604 (diff)
downloadpw-darwin-6f942679935ca267ade32d4e5a6bfd7d9cf26b14.tar.gz
pw-darwin-6f942679935ca267ade32d4e5a6bfd7d9cf26b14.tar.zst
pw-darwin-6f942679935ca267ade32d4e5a6bfd7d9cf26b14.zip
Submitted by: proff@iq.org
Minor fix for security patch.
Diffstat (limited to 'pw')
-rw-r--r--pw/pw_user.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pw/pw_user.c b/pw/pw_user.c
index 150c71c..b70d68c 100644
--- a/pw/pw_user.c
+++ b/pw/pw_user.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id: pw_user.c,v 1.2 1996/12/11 15:10:47 joerg Exp $
+ * $Id: pw_user.c,v 1.3 1996/12/16 17:37:58 davidn Exp $
*/
#include <unistd.h>
@@ -771,7 +771,7 @@ pw_getrand(u_char *buf, int len)
{
int fd;
fd = open("/dev/urandom", O_RDONLY);
- if (!fd || read(fd, buf, len)!=len) {
+ if (fd==-1 || read(fd, buf, len)!=len) {
int n;
for (n=0;n<len;n+=16) {
u_char ubuf[16];