Merge pull request #409 from hwhw/master

Do not use error() in gluon-neighbour-info
This commit is contained in:
Nils Schneider 2015-07-06 09:41:03 +02:00
commit b91115e8f1
1 changed files with 4 additions and 2 deletions

View File

@ -176,8 +176,10 @@ int main(int argc, char **argv) {
fprintf(stderr, "Invalid parameter %c ignored.\n", c);
}
if (request_string == NULL)
error(EXIT_FAILURE, 0, "No request string supplied");
if (request_string == NULL) {
fprintf(stderr, "No request string supplied");
exit(EXIT_FAILURE);
}
if (sse)
fputs("Content-Type: text/event-stream\n\n", stdout);