From b59eff1c137f9edc6dbe5def48b948899abda322 Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Wed, 6 Sep 2006 05:13:42 +0000 Subject: Fix the bug in name change. The UNTIMEOUT macro did not use the ppp version. --- cpukit/pppd/pppd.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpukit/pppd') 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) -- cgit v1.2.3