diff options
author | Tony Nguyen <Ton.Nguyen@Sun.COM> | 2009-03-19 14:45:10 -0700 |
---|---|---|
committer | Tony Nguyen <Ton.Nguyen@Sun.COM> | 2009-03-19 14:45:10 -0700 |
commit | 42096647a1cb1ee493b238f2713f001b8b039514 (patch) | |
tree | 8bc3b11b1f8eb8697cdb9e738c2426c947c6d519 /usr/src/cmd/praudit/token.c | |
parent | 4c17c04f214dbe4ce468ba6e06def8cbefbead74 (diff) | |
download | illumos-gate-42096647a1cb1ee493b238f2713f001b8b039514.tar.gz |
6617821 adt_export_data_t needs to avoid using variable-sized types
Diffstat (limited to 'usr/src/cmd/praudit/token.c')
-rw-r--r-- | usr/src/cmd/praudit/token.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr/src/cmd/praudit/token.c b/usr/src/cmd/praudit/token.c index d4a53b4e8e..4c1c0ba02b 100644 --- a/usr/src/cmd/praudit/token.c +++ b/usr/src/cmd/praudit/token.c @@ -19,11 +19,10 @@ * CDDL HEADER END */ /* - * Copyright 2007 Sun Microsystems, Inc. All rights reserved. + * Copyright 2009 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ -#pragma ident "%Z%%M% %I% %E% SMI" #include <ctype.h> #include <dirent.h> @@ -2195,7 +2194,7 @@ int label_token(pr_context_t *context) { static m_label_t *label = NULL; - static size_t l_size; + static size32_t l_size; int len; int returnstat; uval_t uval; |