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.
11 lines
318 B
11 lines
318 B
--- a/pppd/options.c
|
|
+++ b/pppd/options.c
|
|
@@ -1013,7 +1013,7 @@ print_option(opt, mainopt, printer, arg)
|
|
p = (char *) opt->addr2;
|
|
if ((opt->flags & OPT_STATIC) == 0)
|
|
p = *(char **)p;
|
|
- printer("%q", p);
|
|
+ printer(arg, "%q", p);
|
|
} else if (opt->flags & OPT_A2LIST) {
|
|
struct option_value *ovp;
|
|
|
|
|