Remove unnecessary description from perror as there only exists one call to each...
authorBrian McGillion <brian.mcgillion@intel.com>
Wed, 25 Apr 2012 07:55:31 +0000 (10:55 +0300)
committerBrian McGillion <brian.mcgillion@intel.com>
Wed, 25 Apr 2012 07:55:31 +0000 (10:55 +0300)
utils/smackctl.c

index 82b6291..56c843c 100644 (file)
@@ -38,10 +38,10 @@ static int apply_all(void)
                return -1;
 
        if (apply_rules(ACCESSES_D_PATH, 0))
-               perror("apply_rules Path");
+               perror("apply_rules");
 
        if (apply_cipso(CIPSO_D_PATH))
-               perror("apply_cipso Path");
+               perror("apply_cipso");
 
        return 0;
 }