diff options
Diffstat (limited to 'openbsd-compat')
-rw-r--r-- | openbsd-compat/bsd-misc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openbsd-compat/bsd-misc.c b/openbsd-compat/bsd-misc.c index 474aae1a6..da8f77046 100644 --- a/openbsd-compat/bsd-misc.c +++ b/openbsd-compat/bsd-misc.c | |||
@@ -25,7 +25,7 @@ | |||
25 | #include "includes.h" | 25 | #include "includes.h" |
26 | #include "xmalloc.h" | 26 | #include "xmalloc.h" |
27 | 27 | ||
28 | RCSID("$Id: bsd-misc.c,v 1.15 2003/08/02 13:33:48 dtucker Exp $"); | 28 | RCSID("$Id: bsd-misc.c,v 1.16 2003/08/02 14:36:16 dtucker Exp $"); |
29 | 29 | ||
30 | /* | 30 | /* |
31 | * NB. duplicate __progname in case it is an alias for argv[0] | 31 | * NB. duplicate __progname in case it is an alias for argv[0] |
@@ -173,7 +173,7 @@ tcgetpgrp(int fd) | |||
173 | { | 173 | { |
174 | int ctty_pgrp; | 174 | int ctty_pgrp; |
175 | 175 | ||
176 | if (ioctl(STDOUT_FILENO, TIOCGPGRP, &ctty_pgrp) == -1) | 176 | if (ioctl(fd, TIOCGPGRP, &ctty_pgrp) == -1) |
177 | return(-1); | 177 | return(-1); |
178 | else | 178 | else |
179 | return(ctty_pgrp); | 179 | return(ctty_pgrp); |