diff --git a/vuurmuur-conf/src/help.c b/vuurmuur-conf/src/help.c
index cf49fd3..244e5c4 100644
|
a
|
b
|
print_about(const int debuglvl) |
| 1152 | 1152 | int key_choices_n = 1; |
| 1153 | 1153 | char *cmd_choices[] = { gettext("back") }; |
| 1154 | 1154 | int cmd_choices_n = 1; |
| | 1155 | char about_version_string[sizeof(version_string)]; |
| | 1156 | |
| | 1157 | /* create the about version string */ |
| | 1158 | snprintf(about_version_string, sizeof(about_version_string), "Version: %s\n", version_string); |
| 1155 | 1159 | |
| 1156 | 1160 | /* get screensize */ |
| 1157 | 1161 | getmaxyx(stdscr, max_height, max_width); |
| … |
… |
print_about(const int debuglvl) |
| 1168 | 1172 | (void)read_helpline(debuglvl, &about_list, "=============\n"); |
| 1169 | 1173 | (void)read_helpline(debuglvl, &about_list, "\n"); |
| 1170 | 1174 | (void)read_helpline(debuglvl, &about_list, "\n"); |
| | 1175 | (void)read_helpline(debuglvl, &about_list, about_version_string); |
| | 1176 | (void)read_helpline(debuglvl, &about_list, "\n"); |
| 1171 | 1177 | (void)read_helpline(debuglvl, &about_list, "Copyright 2003-2007 (c) Victor Julien <victor(at)vuurmuur(dot)org>.\n"); |
| 1172 | 1178 | (void)read_helpline(debuglvl, &about_list, "This program is distributed under the terms of the GPL.\n"); |
| 1173 | 1179 | (void)read_helpline(debuglvl, &about_list, "\n"); |