1 diff -ruN ppp.orig/pppd/chap-new.c ppp/pppd/chap-new.c
2 --- ppp.orig/pppd/chap-new.c 2003-11-27 23:25:17.000000000 +0100
3 +++ ppp/pppd/chap-new.c 2003-12-02 12:26:21.000000000 +0100
5 int chap_timeout_time = 3;
6 int chap_max_transmits = 10;
7 int chap_rechallenge_time = 0;
8 +int chapms_strip_domain = 0;
11 * Command-line options.
13 "Set max #xmits for challenge", OPT_PRIO },
14 { "chap-interval", o_int, &chap_rechallenge_time,
15 "Set interval for rechallenge", OPT_PRIO },
16 + { "chapms-strip-domain", o_bool, &chapms_strip_domain,
17 + "Strip the domain prefix before the Username", 1 },
22 /* Null terminate and clean remote name. */
23 slprintf(rname, sizeof(rname), "%.*v", len, name);
26 + /* strip the MS domain name */
27 + if (chapms_strip_domain && strrchr(rname, '\\')) {
28 + char tmp[MAXNAMELEN+1];
30 + strcpy(tmp, strrchr(rname, '\\') + 1);