mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-22 10:00:14 +00:00
- (tim) [defines.h] openbsd-compat/readpassphrase.c now needs _NSIG.
feedback and ok dtucker@
This commit is contained in:
parent
096630d06c
commit
d4a7fcbc46
@ -31,6 +31,8 @@
|
||||
don't append a space after inserting a completion of a directory (i.e.
|
||||
a path ending in '/') for a slightly better user experience; ok dtucker@
|
||||
- (dtucker) [sftp-common.c] Wrap include of util.h in an ifdef.
|
||||
- (tim) [defines.h] openbsd-compat/readpassphrase.c now needs _NSIG.
|
||||
feedback and ok dtucker@
|
||||
|
||||
20100112
|
||||
- (dtucker) OpenBSD CVS Sync
|
||||
|
10
defines.h
10
defines.h
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user