=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshconnect.h,v retrieving revision 1.17.14.2 retrieving revision 1.18 diff -u -r1.17.14.2 -r1.18 --- src/usr.bin/ssh/sshconnect.h 2006/10/06 03:19:33 1.17.14.2 +++ src/usr.bin/ssh/sshconnect.h 2005/12/06 22:38:28 1.18 @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.h,v 1.17.14.2 2006/10/06 03:19:33 brad Exp $ */ +/* $OpenBSD: sshconnect.h,v 1.18 2005/12/06 22:38:28 reyk Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -23,6 +23,8 @@ * (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 { @@ -52,18 +54,16 @@ /* * Macros to raise/lower permissions. */ -#define PRIV_START do { \ - int save_errno = errno; \ - if (seteuid(original_effective_uid) != 0) \ - fatal("PRIV_START: seteuid: %s", \ - strerror(errno)); \ - errno = save_errno; \ +#define PRIV_START do { \ + int save_errno = errno; \ + (void)seteuid(original_effective_uid); \ + errno = save_errno; \ } while (0) -#define PRIV_END do { \ - int save_errno = errno; \ - if (seteuid(original_real_uid) != 0) \ - fatal("PRIV_END: seteuid: %s", \ - strerror(errno)); \ - errno = save_errno; \ +#define PRIV_END do { \ + int save_errno = errno; \ + (void)seteuid(original_real_uid); \ + errno = save_errno; \ } while (0) + +#endif