diff options
author | Tim Rice <tim@multitalents.net> | 2010-01-14 00:44:34 +0100 |
---|---|---|
committer | Tim Rice <tim@multitalents.net> | 2010-01-14 00:44:34 +0100 |
commit | d4a7fcbc462b2af134f6e59a6068fbe5b35fba80 (patch) | |
tree | 14a9ad785b26128d582ef402365ca15f11ed0050 /defines.h | |
parent | - (dtucker) [sftp-common.c] Wrap include of util.h in an ifdef. (diff) | |
download | openssh-d4a7fcbc462b2af134f6e59a6068fbe5b35fba80.tar.xz openssh-d4a7fcbc462b2af134f6e59a6068fbe5b35fba80.zip |
- (tim) [defines.h] openbsd-compat/readpassphrase.c now needs _NSIG.
feedback and ok dtucker@
Diffstat (limited to 'defines.h')
-rw-r--r-- | defines.h | 10 |
1 files changed, 9 insertions, 1 deletions
@@ -25,7 +25,7 @@ #ifndef _DEFINES_H #define _DEFINES_H -/* $Id: defines.h,v 1.158 2010/01/09 11:33:37 dtucker Exp $ */ +/* $Id: defines.h,v 1.159 2010/01/13 23:44:34 tim Exp $ */ /* Constants */ @@ -753,4 +753,12 @@ struct winsize { # define SSH_IOBUFSZ 8192 #endif +#ifndef _NSIG +# ifdef NSIG +# define _NSIG NSIG +# else +# define _NSIG 128 +# endif +#endif + #endif /* _DEFINES_H */ |