mirror of git://anongit.mindrot.org/openssh.git
Add no-op getsid implmentation.
This commit is contained in:
parent
11057564eb
commit
b39593a6de
|
@ -1739,6 +1739,7 @@ AC_CHECK_FUNCS([ \
|
|||
getpgrp \
|
||||
_getpty \
|
||||
getrlimit \
|
||||
getsid \
|
||||
getttyent \
|
||||
glob \
|
||||
group_from_gid \
|
||||
|
|
|
@ -298,3 +298,13 @@ raise(int sig)
|
|||
kill(getpid(), sig);
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_GETSID
|
||||
pid_t
|
||||
getsid(pid_t pid)
|
||||
{
|
||||
errno = ENOSYS;
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
@ -141,4 +141,8 @@ void bzero(void *, size_t);
|
|||
int raise(int);
|
||||
#endif
|
||||
|
||||
#ifndef HAVE_GETSID
|
||||
pid_t getsid(pid_t);
|
||||
#endif
|
||||
|
||||
#endif /* _BSD_MISC_H */
|
||||
|
|
Loading…
Reference in New Issue