blob: 22435a921cdcb60e75f5b7418b435f80c2abb0f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- appl/bsd/forkpty.c.old 2006-05-04 18:06:40.000000000 +0200
+++ appl/bsd/forkpty.c 2006-05-04 18:07:05.000000000 +0200
@@ -70,7 +70,7 @@
#ifndef HAVE_REVOKE
static
int
-revoke(const char *line)
+_revoke(const char *line)
{
int slave;
RETSIGTYPE (*ofun)(int);
@@ -403,7 +403,7 @@
if (setsid() < 0)
fatal(0, "setsid() failure", errno);
- revoke(slave_name);
+ _revoke(slave_name);
#if defined(NeXT) || defined(ultrix)
/* The NeXT is severely broken, this makes things slightly
|