=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshconnect.h,v retrieving revision 1.17.14.1 retrieving revision 1.17.14.2 diff -u -r1.17.14.1 -r1.17.14.2 --- src/usr.bin/ssh/sshconnect.h 2006/02/03 03:01:58 1.17.14.1 +++ src/usr.bin/ssh/sshconnect.h 2006/10/06 03:19:33 1.17.14.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.h,v 1.17.14.1 2006/02/03 03:01:58 brad Exp $ */ +/* $OpenBSD: sshconnect.h,v 1.17.14.2 2006/10/06 03:19:33 brad Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -23,8 +23,6 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ -#ifndef SSHCONNECT_H -#define SSHCONNECT_H typedef struct Sensitive Sensitive; struct Sensitive { @@ -54,16 +52,18 @@ /* * Macros to raise/lower permissions. */ -#define PRIV_START do { \ - int save_errno = errno; \ - (void)seteuid(original_effective_uid); \ - errno = save_errno; \ +#define PRIV_START do { \ + int save_errno = errno; \ + if (seteuid(original_effective_uid) != 0) \ + fatal("PRIV_START: seteuid: %s", \ + strerror(errno)); \ + errno = save_errno; \ } while (0) -#define PRIV_END do { \ - int save_errno = errno; \ - (void)seteuid(original_real_uid); \ - errno = save_errno; \ +#define PRIV_END do { \ + int save_errno = errno; \ + if (seteuid(original_real_uid) != 0) \ + fatal("PRIV_END: seteuid: %s", \ + strerror(errno)); \ + errno = save_errno; \ } while (0) - -#endif