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: done:
debug_return(rval); debug_return_bool(rval);
} }
#endif /* HAVE_OPENPTY */ #endif /* HAVE_OPENPTY */