mirror of git://anongit.mindrot.org/openssh.git
fix compilation on systems without SYMLOOP_MAX
This commit is contained in:
parent
fafe1d84a2
commit
eb6c50d82a
|
@ -44,6 +44,10 @@
|
|||
#include <unistd.h>
|
||||
#include <limits.h>
|
||||
|
||||
#ifndef SYMLOOP_MAX
|
||||
# define SYMLOOP_MAX 32
|
||||
#endif
|
||||
|
||||
/* A slightly modified copy of this file exists in libexec/ld.so */
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue