]> git.ozlabs.org Git - ppp.git/commitdiff
remove oops message when a bool option has been turned off by other
authorPaul Mackerras <paulus@samba.org>
Mon, 12 Mar 2001 22:56:12 +0000 (22:56 +0000)
committerPaul Mackerras <paulus@samba.org>
Mon, 12 Mar 2001 22:56:12 +0000 (22:56 +0000)
logic; fix silly bug in options_from_list

pppd/options.c

index 689bde6c64c661e95071523d4c82237856a09f78..acba28965b1032917aecad3a5fd2c3f1351b55ed 100644 (file)
@@ -17,7 +17,7 @@
  * WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  */
 
-#define RCSID  "$Id: options.c,v 1.79 2001/03/08 05:11:15 paulus Exp $"
+#define RCSID  "$Id: options.c,v 1.80 2001/03/12 22:56:12 paulus Exp $"
 
 #include <ctype.h>
 #include <stdio.h>
@@ -497,6 +497,7 @@ options_from_list(w, priv)
        }
        if (!process_option(opt, w0->word, argv))
            goto err;
+       w = w->next;
     }
     ret = 1;
 
@@ -815,8 +816,9 @@ print_option(opt, mainopt, printer, arg)
        case o_bool:
                v = opt->flags & OPT_VALUE;
                if (*(bool *)opt->addr != v)
-                       printer(arg, "oops, %s value is %d not %d?\n",
-                               opt->name, *(bool *)opt->addr, v);
+                       /* this can happen legitimately, e.g. lock
+                          option turned off for default device */
+                       break;
                printer(arg, "%s", opt->name);
                break;
        case o_int:
@@ -929,6 +931,7 @@ print_options(printer, arg)
        struct option_list *list;
        int i;
 
+       printer(arg, "pppd options in effect:\n");
        print_option_list(general_options, printer, arg);
        print_option_list(auth_options, printer, arg);
        for (list = extra_options; list != NULL; list = list->next)