Fix the bug in name change. The UNTIMEOUT macro did not use the ppp version.

This commit is contained in:
Chris Johns
2006-09-06 05:13:42 +00:00
parent 662c1577ac
commit b59eff1c13

View File

@@ -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)