- (bal) if no MAXHOSTNAMELEN is defined. Default to 64 character defination.
Suggested by Christian Kurz <shorty@debain.org>
This commit is contained in:
parent
0a8397e00c
commit
beac3b4341
|
@ -4,6 +4,8 @@
|
||||||
[ssh-keygen.c]
|
[ssh-keygen.c]
|
||||||
enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
|
enable 'ssh-keygen -l -f ~/.ssh/{authorized_keys,known_hosts}{,2}
|
||||||
- (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
|
- (bal) Resynced CVS ID with OpenBSD for channel.c and uidswap.c
|
||||||
|
- (bal) if no MAXHOSTNAMELEN is defined. Default to 64 character defination.
|
||||||
|
Suggested by Christian Kurz <shorty@debain.org>
|
||||||
|
|
||||||
20001229
|
20001229
|
||||||
- (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
|
- (bal) Fixed spelling of 'authorized_keys' in ssh-copy-id.1 by Christian
|
||||||
|
|
|
@ -78,6 +78,10 @@ enum
|
||||||
# endif /* PATH_MAX */
|
# endif /* PATH_MAX */
|
||||||
#endif /* MAXPATHLEN */
|
#endif /* MAXPATHLEN */
|
||||||
|
|
||||||
|
#ifndef MAXHOSTNAMELEN
|
||||||
|
# define MAXHOSTNAMELEN 64
|
||||||
|
#endif /* MAXHOSTNAMELEN */
|
||||||
|
|
||||||
#ifndef STDIN_FILENO
|
#ifndef STDIN_FILENO
|
||||||
# define STDIN_FILENO 0
|
# define STDIN_FILENO 0
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue