You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
281 B
13 lines
281 B
13 years ago
|
--- a/pppd/main.c
|
||
|
+++ b/pppd/main.c
|
||
|
@@ -1048,7 +1048,8 @@ get_input()
|
||
|
}
|
||
|
notice("Modem hangup");
|
||
|
hungup = 1;
|
||
|
- status = EXIT_HANGUP;
|
||
|
+ if (status == EXIT_OK)
|
||
|
+ status = EXIT_HANGUP;
|
||
|
lcp_lowerdown(0); /* serial link is no longer available */
|
||
|
link_terminated(0);
|
||
|
return;
|