diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 08:11:43 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 08:11:43 +0000 |
commit | 1b6f2e0f4c8445100f1ea6bea5b89db15dba0175 (patch) | |
tree | 47203e44f22361896d63103608f32c2d8ba87e13 /package/config/zconf.y | |
parent | 2c2796719afce7b7a64fa1dd0bec736b10e371da (diff) |
package/config: rebase from upstream (2.6.23.14)
From Bernhards tree (2737cfdd)
Diffstat (limited to 'package/config/zconf.y')
-rw-r--r-- | package/config/zconf.y | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/config/zconf.y b/package/config/zconf.y index 13465c766..ca435c5f9 100644 --- a/package/config/zconf.y +++ b/package/config/zconf.y @@ -402,7 +402,7 @@ help_start: T_HELP T_EOL help: help_start T_HELPTEXT { - current_entry->sym->help = $2; + current_entry->help = $2; }; /* depends option */ @@ -649,11 +649,11 @@ void print_symbol(FILE *out, struct menu *menu) break; } } - if (sym->help) { - int len = strlen(sym->help); - while (sym->help[--len] == '\n') - sym->help[len] = 0; - fprintf(out, " help\n%s\n", sym->help); + if (menu->help) { + int len = strlen(menu->help); + while (menu->help[--len] == '\n') + menu->help[len] = 0; + fprintf(out, " help\n%s\n", menu->help); } fputc('\n', out); } |