- make the features output more portable
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.11-ssl-fixes@1305 152afb58-edef-0310-8abb-c4023f1b3aa9svn/tags/lighttpd-1.4.12
parent
08c093b940
commit
d9cb387859
|
@ -286,9 +286,7 @@ static void show_version (void) {
|
|||
}
|
||||
|
||||
static void show_features (void) {
|
||||
show_version();
|
||||
printf("\nEvent Handlers:\n\n%s",
|
||||
|
||||
const char features[] = ""
|
||||
#ifdef USE_SELECT
|
||||
"\t+ select (generic)\n"
|
||||
#else
|
||||
|
@ -405,8 +403,9 @@ static void show_features (void) {
|
|||
#else
|
||||
"\t- GDBM support\n"
|
||||
#endif
|
||||
"\n"
|
||||
);
|
||||
"\n";
|
||||
show_version();
|
||||
printf("\nEvent Handlers:\n\n%s", features);
|
||||
}
|
||||
|
||||
static void show_help (void) {
|
||||
|
|
Loading…
Reference in New Issue