diff options
author | Darren Tucker <dtucker@zip.com.au> | 2004-03-08 12:59:03 +0100 |
---|---|---|
committer | Darren Tucker <dtucker@zip.com.au> | 2004-03-08 12:59:03 +0100 |
commit | 86c093d2895989d1258459b797ce3630eaa47d1a (patch) | |
tree | 1de57c50af2b52f32906f21f91e81ab1f839eb93 /openbsd-compat/bsd-misc.h | |
parent | - (dtucker) [sshd.c] Back out rev 1.270 as it caused problems on some (diff) | |
download | openssh-86c093d2895989d1258459b797ce3630eaa47d1a.tar.xz openssh-86c093d2895989d1258459b797ce3630eaa47d1a.zip |
- (dtucker) [configure.ac sshd.c openbsd-compat/bsd-misc.h
openbsd-compat/setenv.c] Unset KRB5CCNAME on AIX to prevent it from being
inherited by the child. ok djm@
Diffstat (limited to 'openbsd-compat/bsd-misc.h')
-rw-r--r-- | openbsd-compat/bsd-misc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/openbsd-compat/bsd-misc.h b/openbsd-compat/bsd-misc.h index c8073942c..009739b14 100644 --- a/openbsd-compat/bsd-misc.h +++ b/openbsd-compat/bsd-misc.h @@ -1,4 +1,4 @@ -/* $Id: bsd-misc.h,v 1.14 2004/02/17 05:49:55 djm Exp $ */ +/* $Id: bsd-misc.h,v 1.15 2004/03/08 11:59:03 dtucker Exp $ */ /* * Copyright (c) 1999-2004 Damien Miller <djm@mindrot.org> @@ -89,6 +89,10 @@ pid_t tcgetpgrp(int); int tcsendbreak(int, int); #endif +#ifndef HAVE_UNSETENV +void unsetenv(const char *); +#endif + /* wrapper for signal interface */ typedef void (*mysig_t)(int); mysig_t mysignal(int sig, mysig_t act); |