summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Steves <stevesk@pobox.com>2001-02-18 11:34:32 +0000
committerKevin Steves <stevesk@pobox.com>2001-02-18 11:34:32 +0000
commit4679f5b94f9bcfd2ad5661c6b44eb4d6ee14cf51 (patch)
tree2749cc3897a39faa2e958502635365a6a8fefdf9
parent60396b060b803fd2d20aa151dc0432a344f798b0 (diff)
downloadopenssh-git-4679f5b94f9bcfd2ad5661c6b44eb4d6ee14cf51.tar.gz
- (stevesk) entropy.c: typo; should be SIGPIPE
-rw-r--r--ChangeLog3
-rw-r--r--entropy.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 10ea1891..ec6e5885 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -28,6 +28,7 @@
a <sys/queue.h> that lacks the TAILQ_* macros. Patch from Todd C.
Miller <Todd.Miller@courtesan.com>
- (djm) Update RPM spec files for 2.5.0p1
+ - (stevesk) entropy.c: typo; should be SIGPIPE
20010217
- (bal) OpenBSD Sync:
@@ -4035,4 +4036,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.798 2001/02/18 04:43:07 djm Exp $
+$Id: ChangeLog,v 1.799 2001/02/18 11:34:32 stevesk Exp $
diff --git a/entropy.c b/entropy.c
index ed8b8db2..5a85009c 100644
--- a/entropy.c
+++ b/entropy.c
@@ -39,7 +39,7 @@
#include "pathnames.h"
#include "log.h"
-RCSID("$Id: entropy.c,v 1.28 2001/02/18 04:28:12 djm Exp $");
+RCSID("$Id: entropy.c,v 1.29 2001/02/18 11:34:32 stevesk Exp $");
#ifndef offsetof
# define offsetof(type, member) ((size_t) &((type *)0)->member)
@@ -130,7 +130,7 @@ reopen:
rval = 1;
done:
- mysignal(SIG_PIPE, old_sigpipe);
+ mysignal(SIGPIPE, old_sigpipe);
if (fd != -1)
close(fd);
return(rval);