2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

Fix compilation on systems without openpty(), _getpty() or grantpt().

From Vasilyy Balyasnyy
This commit is contained in:
Todd C. Miller 2014-09-10 05:57:31 -06:00
parent 398a16c6af
commit d1fe802f08

View File

@ -193,6 +193,6 @@ get_pty(int *master, int *slave, char *name, size_t namesz, uid_t ttyuid)
}
}
done:
debug_return(rval);
debug_return_bool(rval);
}
#endif /* HAVE_OPENPTY */