simplify control flow

Matthias-Christian Ott 2008-06-02 20:01:35 +02:00
parent 1ebcc5c97b
commit 4059fb04fa
1 changed files with 1 additions and 3 deletions

4
std.c
View File

@ -109,11 +109,9 @@ getpty(void) {
ptm = posix_openpt(O_RDWR);
#else
ptm = open("/dev/ptmx", O_RDWR);
if(ptm == -1) {
if(ptm == -1)
if(openpty(&ptm, &pts, NULL, NULL, NULL) == -1)
eprintn("error, cannot open pty");
return;
}
#endif
#if defined(_XOPEN_SOURCE)
if(ptm != -1) {