diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-21 01:34:12 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2011-10-21 01:34:12 +0000 |
commit | 799c0920c5e6dafbd5803c124523614fe6a637b0 (patch) | |
tree | 840ce44c992cebda7ff0e0a1caa75a7972ab6e2e | |
parent | a28c14be78000c12b4169addaf5c7f7a793f8e7c (diff) |
pppd: fix the exit code in case of authentication failure or other errors
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@28498 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/ppp/patches/208-fix_status_code.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/package/ppp/patches/208-fix_status_code.patch b/package/ppp/patches/208-fix_status_code.patch new file mode 100644 index 000000000..c512354a2 --- /dev/null +++ b/package/ppp/patches/208-fix_status_code.patch @@ -0,0 +1,12 @@ +--- 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; |