]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/test/test-af-list.c
test-process-util: invert reporting to make sure that we're not dividing by 0
[thirdparty/systemd.git] / src / test / test-af-list.c
index f8687b7354aac063dcf0d7635544445f1de1a95a..c8ef3295b568556e7869f6bfebffbce318317ac8 100644 (file)
@@ -1,9 +1,4 @@
 /* SPDX-License-Identifier: LGPL-2.1+ */
-/***
-  This file is part of systemd
-
-  Copyright 2015 Daniel Mack
-***/
 
 #include <string.h>
 #include <sys/socket.h>
@@ -21,7 +16,7 @@ static const struct af_name* lookup_af(register const char *str, register GPERF_
 
 int main(int argc, const char *argv[]) {
 
-        unsigned int i;
+        unsigned i;
 
         for (i = 0; i < ELEMENTSOF(af_names); i++) {
                 if (af_names[i]) {
@@ -32,8 +27,8 @@ int main(int argc, const char *argv[]) {
 
         assert_se(af_to_name(af_max()) == NULL);
         assert_se(af_to_name(-1) == NULL);
-        assert_se(af_from_name("huddlduddl") == AF_UNSPEC);
-        assert_se(af_from_name("") == AF_UNSPEC);
+        assert_se(af_from_name("huddlduddl") == -EINVAL);
+        assert_se(af_from_name("") == -EINVAL);
 
         return 0;
 }