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 \
|
getpgrp \
|
||||||
_getpty \
|
_getpty \
|
||||||
getrlimit \
|
getrlimit \
|
||||||
|
getsid \
|
||||||
getttyent \
|
getttyent \
|
||||||
glob \
|
glob \
|
||||||
group_from_gid \
|
group_from_gid \
|
||||||
|
|
|
@ -298,3 +298,13 @@ raise(int sig)
|
||||||
kill(getpid(), sig);
|
kill(getpid(), sig);
|
||||||
}
|
}
|
||||||
#endif
|
#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);
|
int raise(int);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef HAVE_GETSID
|
||||||
|
pid_t getsid(pid_t);
|
||||||
|
#endif
|
||||||
|
|
||||||
#endif /* _BSD_MISC_H */
|
#endif /* _BSD_MISC_H */
|
||||||
|
|
Loading…
Reference in New Issue