X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Funlockpt.c;h=face05cfc5e7487c70e3e5bc5f474a0e7a1077e0;hb=5556cec1e3f87122e1b0e7bf82f1f75c57219a21;hp=678548705755e36b72314174b821df403a0c2553;hpb=90bc75734efe584bf3dcdc65e5689123ea78ce11;p=gnulib.git diff --git a/lib/unlockpt.c b/lib/unlockpt.c index 678548705..face05cfc 100644 --- a/lib/unlockpt.c +++ b/lib/unlockpt.c @@ -1,5 +1,5 @@ /* Unlock the slave side of a pseudo-terminal from its master side. - Copyright (C) 1998, 2010-2011 Free Software Foundation, Inc. + Copyright (C) 1998, 2010-2013 Free Software Foundation, Inc. Contributed by Zack Weinberg , 1998. This program is free software: you can redistribute it and/or modify @@ -28,7 +28,7 @@ unlockpt (int fd) /* Platforms which have the TIOCSPTLCK ioctl (Linux) already have the unlockpt function. */ #if HAVE_REVOKE - /* MacOS X 10.3, OpenBSD 3.8 do not have the unlockpt function, but they + /* Mac OS X 10.3, OpenBSD 3.8 do not have the unlockpt function, but they have revoke(). */ char *name = ptsname (fd); if (name == NULL)