summaryrefslogtreecommitdiff
path: root/contrib/openbsm/tools
diff options
context:
space:
mode:
authorRobert Watson <rwatson@FreeBSD.org>2009-08-02 10:27:54 +0000
committerRobert Watson <rwatson@FreeBSD.org>2009-08-02 10:27:54 +0000
commita743684e600e6dbe68f9218219686402bdea07e0 (patch)
treea02848295a5687895e3ba9e2a5a7d83267332a8c /contrib/openbsm/tools
parent6aad5c1c9393b717363b89cd9405eef8a0c3c520 (diff)
parentd4b6ea31f692ff2a72000eb92e0507dafcff8268 (diff)
downloadsrc-test2-a743684e600e6dbe68f9218219686402bdea07e0.tar.gz
src-test2-a743684e600e6dbe68f9218219686402bdea07e0.zip
Notes
Diffstat (limited to 'contrib/openbsm/tools')
-rw-r--r--contrib/openbsm/tools/audump.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/contrib/openbsm/tools/audump.c b/contrib/openbsm/tools/audump.c
index a5f4b6d0602b..82d17ea21baa 100644
--- a/contrib/openbsm/tools/audump.c
+++ b/contrib/openbsm/tools/audump.c
@@ -1,5 +1,5 @@
/*-
- * Copyright (c) 2005-2006 Robert N. M. Watson
+ * Copyright (c) 2005-2009 Robert N. M. Watson
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $P4: //depot/projects/trustedbsd/openbsm/tools/audump.c#8 $
+ * $P4: //depot/projects/trustedbsd/openbsm/tools/audump.c#9 $
*/
#include <bsm/libbsm.h>
@@ -165,16 +165,16 @@ printf_classmask(au_class_t classmask)
first = 1;
for (i = 0; i < 32; i++) {
- if (classmask & (2 << i)) {
+ if (classmask & (1 << i)) {
if (first)
first = 0;
else
printf(",");
- c = getauclassnum(2 << i);
+ c = getauclassnum(1 << i);
if (c != NULL)
printf("%s", c->ac_name);
else
- printf("0x%x", 2 << i);
+ printf("0x%x", 1 << i);
}
}
}