summaryrefslogtreecommitdiff
path: root/defines.h
diff options
context:
space:
mode:
Diffstat (limited to 'defines.h')
-rw-r--r--defines.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/defines.h b/defines.h
index a4fdd2c83..f52dfd256 100644
--- a/defines.h
+++ b/defines.h
@@ -25,7 +25,7 @@
25#ifndef _DEFINES_H 25#ifndef _DEFINES_H
26#define _DEFINES_H 26#define _DEFINES_H
27 27
28/* $Id: defines.h,v 1.113 2004/04/08 06:16:06 dtucker Exp $ */ 28/* $Id: defines.h,v 1.114 2004/04/14 05:26:39 dtucker Exp $ */
29 29
30 30
31/* Constants */ 31/* Constants */
@@ -546,6 +546,11 @@ struct winsize {
546#endif 546#endif
547 547
548 548
549/* Some platforms, eg NetBSD, have a 4th argument for skeychallenge() */
550#ifdef SKEYCHALLENGE_4ARG
551# define skeychallenge(a,b,c) skeychallenge((a), (b), (c), (sizeof(c)))
552#endif
553
549/* 554/*
550 * Define this to use pipes instead of socketpairs for communicating with the 555 * Define this to use pipes instead of socketpairs for communicating with the
551 * client program. Socketpairs do not seem to work on all systems. 556 * client program. Socketpairs do not seem to work on all systems.