aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/sysv/linux/unlockpt.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-02-20 18:45:36 +0000
committerUlrich Drepper <drepper@redhat.com>1998-02-20 18:45:36 +0000
commitdfbad9c855e5aee39492fdc9fbe98eac5846f49c (patch)
treebacfee7faf9f5ce25185b712b01e4f4835e68651 /sysdeps/unix/sysv/linux/unlockpt.c
parent03e4219e7783eaa6d5cf1b02a79e00b857185e55 (diff)
downloadglibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.tar
glibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.tar.gz
glibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.tar.bz2
glibc-dfbad9c855e5aee39492fdc9fbe98eac5846f49c.zip
Update.
1998-02-20 18:43 Ulrich Drepper <drepper@cygnus.com> * hesiod/hesiod.c: Pretty print. Don't use __ protected names. * iconvdata/8bit-gap.c: Likewise. * iconvdata/8bit-generic.c: Likewise. * iconvdata/iso6937.c: Likewise. * iconvdata/iso8859-1.c: Likewise. * iconvdata/sjis.c: Likewise. * iconvdata/t61.c: Likewise. 1998-02-20 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/bits/termios.h: Replace all negative feature tests by positive feature tests. 1998-02-19 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/unlockpt.c: Always return a value. 1998-02-20 Ulrich Drepper <drepper@cygnus.com> * elf/dlvsym.c (dlvsym_doit): More corrections. Patch by Andreas Jaeger.
Diffstat (limited to 'sysdeps/unix/sysv/linux/unlockpt.c')
-rw-r--r--sysdeps/unix/sysv/linux/unlockpt.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/sysdeps/unix/sysv/linux/unlockpt.c b/sysdeps/unix/sysv/linux/unlockpt.c
index e508b280c5..a5f0b2a484 100644
--- a/sysdeps/unix/sysv/linux/unlockpt.c
+++ b/sysdeps/unix/sysv/linux/unlockpt.c
@@ -35,7 +35,7 @@ unlockpt (fd)
if (ioctl (fd, TIOCSPTLCK, &unlock))
{
- if(errno == EINVAL)
+ if (errno == EINVAL)
{
__set_errno (serrno);
return 0;
@@ -43,8 +43,7 @@ unlockpt (fd)
else
return -1;
}
-#else
+#endif
/* On pre-/dev/ptmx kernels this function should be a no-op. */
return 0;
-#endif
}