resolve: fix wording in resolver statistics output
authorLennart Poettering <lennart@poettering.net>
Thu, 21 Jan 2016 01:27:44 +0000 (02:27 +0100)
committerLennart Poettering <lennart@poettering.net>
Mon, 25 Jan 2016 16:19:19 +0000 (17:19 +0100)
Now that we count both negative and positive validation results, we shouldn't claim we just counted RRsets.

src/resolve/resolve-tool.c

index 60c0642..fdaeb8d 100644 (file)
@@ -867,11 +867,11 @@ static int show_statistics(sd_bus *bus) {
         if (r < 0)
                 return bus_log_parse_error(r);
 
-        printf("\n%sDNSSEC%s\n"
-               "       Secure RRsets: %" PRIu64 "\n"
-               "     Insecure RRsets: %" PRIu64 "\n"
-               "        Bogus RRsets: %" PRIu64 "\n"
-               "Indeterminate RRsets: %" PRIu64 "\n",
+        printf("\n%sDNSSEC Verdicts%s\n"
+               "              Secure: %" PRIu64 "\n"
+               "            Insecure: %" PRIu64 "\n"
+               "               Bogus: %" PRIu64 "\n"
+               "       Indeterminate: %" PRIu64 "\n",
                ansi_highlight(),
                ansi_normal(),
                n_dnssec_secure,