瀏覽代碼

gluon-neighbour-info: Do not use error()

error() is a glibc specific function and should not be used in
code meant to be portable.
Hans-Werner Hilse 9 年之前
父節點
當前提交
66060cf08a
共有 1 個文件被更改,包括 4 次插入2 次删除
  1. 4 2
      package/gluon-neighbour-info/src/gluon-neighbour-info.c

+ 4 - 2
package/gluon-neighbour-info/src/gluon-neighbour-info.c

@@ -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);