summaryrefslogtreecommitdiffstats
path: root/cpukit/pppd
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2006-09-06 05:13:42 +0000
committerChris Johns <chrisj@rtems.org>2006-09-06 05:13:42 +0000
commitb59eff1c137f9edc6dbe5def48b948899abda322 (patch)
tree5871053f4d74eb7eec2b77dc8fd5c8c54eb86291 /cpukit/pppd
parent * startup/bspstart.c, start/start.S: Since the crude (diff)
downloadrtems-b59eff1c137f9edc6dbe5def48b948899abda322.tar.bz2
Fix the bug in name change. The UNTIMEOUT macro did not use the ppp version.
Diffstat (limited to 'cpukit/pppd')
-rw-r--r--cpukit/pppd/pppd.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/pppd/pppd.h b/cpukit/pppd/pppd.h
index 5551bf754f..5e30e4dac3 100644
--- a/cpukit/pppd/pppd.h
+++ b/cpukit/pppd/pppd.h
@@ -533,7 +533,7 @@ extern void (*auth_linkdown_hook) __P((void));
*/
#define TIMEOUT(r, f, t) ppptimeout((r), (f), (t))
-#define UNTIMEOUT(r, f) untimeout((r), (f))
+#define UNTIMEOUT(r, f) pppuntimeout((r), (f))
#define BCOPY(s, d, l) memcpy(d, s, l)
#define BZERO(s, n) memset(s, 0, n)