PERFORCE change 146846 for review
Ed Schouten
ed at FreeBSD.org
Thu Aug 7 18:14:06 UTC 2008
http://perforce.freebsd.org/chv.cgi?CH=146846
Change 146846 by ed at ed_dull on 2008/08/07 18:13:58
Revert changes to openpty(). There is no real need to trim away
the function calls. This still makes libutil work when used with
an older kernel + C library from pre-mpsafetty.
Affected files ...
.. //depot/projects/mpsafetty/lib/libutil/pty.c#2 integrate
Differences ...
==== //depot/projects/mpsafetty/lib/libutil/pty.c#2 (text+ko) ====
@@ -60,9 +60,31 @@
if (master == -1)
return (-1);
- if ((slavename = ptsname(master)) == NULL ||
- (slave = open(slavename, O_RDWR)) == -1) {
+ if (grantpt(master) == -1) {
+ close(master);
+ return (-1);
+ }
+
+ slavename = ptsname(master);
+ if (slavename == NULL) {
+ close(master);
+ return (-1);
+ }
+
+ if (revoke(slavename) == -1) {
+ close(master);
+ return (-1);
+ }
+
+ slave = open(slavename, O_RDWR);
+ if (slave == -1) {
+ close(master);
+ return (-1);
+ }
+
+ if (unlockpt(master) == -1) {
close(master);
+ close(slave);
return (-1);
}
More information about the p4-projects
mailing list