summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--openbsd-compat/bsd-misc.c4
2 files changed, 5 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f768edcb3..4ed805c70 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -36,6 +36,8 @@
36 - (dtucker) [acconfig.h configure.ac uidswap.c] Bug #645: Check for 36 - (dtucker) [acconfig.h configure.ac uidswap.c] Bug #645: Check for
37 setres[ug]id() present but not implemented (eg some Linux/glibc 37 setres[ug]id() present but not implemented (eg some Linux/glibc
38 combinations). 38 combinations).
39 - (bal) [openbsd-compat/bsd-misc.c] unset 'signal' defined if we are
40 using a real 'signal()' (Noticed by a NeXT Compile)
39 41
4020031209 4220031209
41 - (dtucker) OpenBSD CVS Sync 43 - (dtucker) OpenBSD CVS Sync
@@ -1605,4 +1607,4 @@
1605 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 1607 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
1606 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 1608 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
1607 1609
1608$Id: ChangeLog,v 1.3148 2003/12/17 07:53:26 dtucker Exp $ 1610$Id: ChangeLog,v 1.3149 2003/12/18 00:34:06 mouring Exp $
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c
index 08b089bdc..44f4fcc1e 100644
--- a/openbsd-compat/bsd-misc.c
+++ b/openbsd-compat/bsd-misc.c
@@ -25,7 +25,7 @@
25#include "includes.h" 25#include "includes.h"
26#include "xmalloc.h" 26#include "xmalloc.h"
27 27
28RCSID("$Id: bsd-misc.c,v 1.19 2003/08/25 01:16:21 mouring Exp $"); 28RCSID("$Id: bsd-misc.c,v 1.20 2003/12/18 00:34:07 mouring Exp $");
29 29
30/* 30/*
31 * NB. duplicate __progname in case it is an alias for argv[0] 31 * NB. duplicate __progname in case it is an alias for argv[0]
@@ -164,7 +164,6 @@ int nanosleep(const struct timespec *req, struct timespec *rem)
164 164
165 return(rc); 165 return(rc);
166} 166}
167
168#endif 167#endif
169 168
170#ifndef HAVE_TCGETPGRP 169#ifndef HAVE_TCGETPGRP
@@ -223,6 +222,7 @@ mysignal(int sig, mysig_t act)
223 } 222 }
224 return (osa.sa_handler); 223 return (osa.sa_handler);
225#else 224#else
225 #undef signal
226 return (signal(sig, act)); 226 return (signal(sig, act));
227#endif 227#endif
228} 228}