awk: fix the case where nested "for" loops with the same variable misbehave
[oweals/busybox.git] / selinux / getsebool.c
index ea080d483a8693a802aae5cd1866e1bc0c93f065..7478b79e1a2a0af487efd491a99d22fe041f612b 100644 (file)
@@ -4,6 +4,7 @@
  * Based on libselinux 1.33.1
  * Port to BusyBox  Hiroshi Shinji <shiroshi@my.email.ne.jp>
  *
+ * Licensed under GPLv2, see file LICENSE in this tarball for details.
  */
 
 #include "libbb.h"
@@ -24,7 +25,7 @@ int getsebool_main(int argc, char **argv)
 
                rc = security_get_boolean_names(&names, &len);
                if (rc)
-                       bb_perror_msg_and_die("cannot get boolean names");
+                       bb_perror_msg_and_die("can't get boolean names");
 
                if (!len) {
                        puts("No booleans");