diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-19 17:03:24 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2012-06-19 17:03:24 +0000 |
commit | 6387e8e4581312c11d00c07821fb5d0ce35a862e (patch) | |
tree | a793cc6fe8062d296696ecad4ae9511b741667e4 /package/ppp/patches/107-debian_pppatm_cleanup.patch | |
parent | f4afa00862b7db8a2da8c012843a286716c0a534 (diff) | |
download | upstream-6387e8e4581312c11d00c07821fb5d0ce35a862e.tar.gz upstream-6387e8e4581312c11d00c07821fb5d0ce35a862e.tar.bz2 upstream-6387e8e4581312c11d00c07821fb5d0ce35a862e.zip |
ppp: annotate most patches with description and S-o-b
SVN-Revision: 32463
Diffstat (limited to 'package/ppp/patches/107-debian_pppatm_cleanup.patch')
-rw-r--r-- | package/ppp/patches/107-debian_pppatm_cleanup.patch | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/package/ppp/patches/107-debian_pppatm_cleanup.patch b/package/ppp/patches/107-debian_pppatm_cleanup.patch deleted file mode 100644 index a3d80a8880..0000000000 --- a/package/ppp/patches/107-debian_pppatm_cleanup.patch +++ /dev/null @@ -1,32 +0,0 @@ ---- a/pppd/plugins/pppoatm/pppoatm.c -+++ b/pppd/plugins/pppoatm/pppoatm.c -@@ -75,13 +75,14 @@ static int setdevname_pppoatm(const char - //info("PPPoATM setdevname_pppoatm: '%s'", cp); - memset(&addr, 0, sizeof addr); - if (text2atm(cp, (struct sockaddr *) &addr, sizeof(addr), -- T2A_PVC | T2A_NAME) < 0) { -- if(doit) -- info("atm does not recognize: %s", cp); -+ T2A_PVC | T2A_NAME | T2A_WILDCARD) < 0) { -+ if (doit) -+ info("cannot parse the ATM address: %s", cp); - return 0; -- } -- if (!doit) return 1; -- //if (!dev_set_ok()) return -1; -+ } -+ if (!doit) -+ return 1; -+ - memcpy(&pvcaddr, &addr, sizeof pvcaddr); - strlcpy(devnam, cp, sizeof devnam); - devstat.st_mode = S_IFSOCK; -@@ -170,7 +171,7 @@ static void disconnect_pppoatm(void) - - void plugin_init(void) - { --#if defined(__linux__) -+#ifdef linux - extern int new_style_driver; /* From sys-linux.c */ - if (!ppp_available() && !new_style_driver) - fatal("Kernel doesn't support ppp_generic - " |