]> git.ozlabs.org Git - ppp.git/commitdiff
don't insist on the suggested address from the secrets file
authorPaul Mackerras <paulus@samba.org>
Mon, 12 Mar 2001 22:50:01 +0000 (22:50 +0000)
committerPaul Mackerras <paulus@samba.org>
Mon, 12 Mar 2001 22:50:01 +0000 (22:50 +0000)
unless it is the only authorized address

pppd/auth.c

index 9a6bfb1a8a4a1b38c7778eeb6ed7869aac908361..94871bfae51b31617436ddaccfdae408f69fbd64 100644 (file)
@@ -32,7 +32,7 @@
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
-#define RCSID  "$Id: auth.c,v 1.68 2001/03/08 05:11:10 paulus Exp $"
+#define RCSID  "$Id: auth.c,v 1.69 2001/03/12 22:50:01 paulus Exp $"
 
 #include <stdio.h>
 #include <stddef.h>
@@ -1605,8 +1605,15 @@ set_allowed_addrs(unit, addrs, opts)
      * which is a single host, then use that if we find one.
      */
     if (suggested_ip != 0
-       && (wo->hisaddr == 0 || !auth_ip_addr(unit, wo->hisaddr)))
+       && (wo->hisaddr == 0 || !auth_ip_addr(unit, wo->hisaddr))) {
        wo->hisaddr = suggested_ip;
+       /*
+        * Do we insist on this address?  No, if there are other
+        * addresses authorized than the suggested one.
+        */
+       if (n > 1)
+           wo->accept_remote = 1;
+    }
 }
 
 /*