=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/sshconnect.h,v retrieving revision 1.18.2.1 retrieving revision 1.19 diff -u -r1.18.2.1 -r1.19 --- src/usr.bin/ssh/sshconnect.h 2006/09/30 04:06:51 1.18.2.1 +++ src/usr.bin/ssh/sshconnect.h 2006/03/25 22:22:43 1.19 @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.h,v 1.18.2.1 2006/09/30 04:06:51 brad Exp $ */ +/* $OpenBSD: sshconnect.h,v 1.19 2006/03/25 22:22:43 djm 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