X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=pppd%2Fauth.c;h=f34be0e4c57ccb27217b25169f04bacb01e4ad28;hp=8a8b2fb83d44a4a74c6b0c5a2778291687340c8a;hb=322e6d68a1737fbbd563030ba33c8498f34fabe0;hpb=637346ba24c289c5a0485651c05baa3f7c22a6b8 diff --git a/pppd/auth.c b/pppd/auth.c index 8a8b2fb..f34be0e 100644 --- a/pppd/auth.c +++ b/pppd/auth.c @@ -68,7 +68,7 @@ * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ -#define RCSID "$Id: auth.c,v 1.101 2004/11/12 10:30:51 paulus Exp $" +#define RCSID "$Id: auth.c,v 1.102 2004/12/31 11:58:56 paulus Exp $" #include #include @@ -532,9 +532,12 @@ void link_required(unit) int unit; { + char *msg; + new_phase(PHASE_SERIALCONN); devfd = the_channel->connect(); + msg = "Connect script failed"; if (devfd < 0) goto fail; @@ -547,6 +550,7 @@ link_required(unit) * gives us. Thus we don't need the tdb_writelock/tdb_writeunlock. */ fd_ppp = the_channel->establish_ppp(devfd); + msg = "ppp establishment failed"; if (fd_ppp < 0) { status = EXIT_FATAL_ERROR; goto disconnect; @@ -581,6 +585,8 @@ link_required(unit) if (the_channel->cleanup) (*the_channel->cleanup)(); + /* XXX not nice here but needs to go somewhere... */ + lcp_close(0, msg); } /*