diff options
Diffstat (limited to 'usr/src/lib/libbsm/common/getacinfo.c')
-rw-r--r-- | usr/src/lib/libbsm/common/getacinfo.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/usr/src/lib/libbsm/common/getacinfo.c b/usr/src/lib/libbsm/common/getacinfo.c index a79ffd7ca2..1a117301b1 100644 --- a/usr/src/lib/libbsm/common/getacinfo.c +++ b/usr/src/lib/libbsm/common/getacinfo.c @@ -2,9 +2,8 @@ * CDDL HEADER START * * The contents of this file are subject to the terms of the - * Common Development and Distribution License, Version 1.0 only - * (the "License"). You may not use this file except in compliance - * with the License. + * Common Development and Distribution License (the "License"). + * You may not use this file except in compliance with the License. * * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE * or http://www.opensolaris.org/os/licensing. @@ -20,7 +19,7 @@ * CDDL HEADER END */ /* - * Copyright 2004 Sun Microsystems, Inc. All rights reserved. + * Copyright 2006 Sun Microsystems, Inc. All rights reserved. * Use is subject to license terms. */ @@ -109,7 +108,7 @@ getacdir(dir, len) /* open file if it is not already opened */ _mutex_lock(&mutex_acf); - if (acf == NULL && (acf = fopen(AUDIT_CTRL, "r")) == NULL) + if (acf == NULL && (acf = fopen(AUDIT_CTRL, "rF")) == NULL) retstat = ERROR; else if (LASTOP != DIROP && DIRINIT == 1) { retstat = REW_WARN; @@ -205,7 +204,7 @@ getacmin(min_val) /* open file if it is not already opened */ _mutex_lock(&mutex_acf); - if (acf == NULL && (acf = fopen(AUDIT_CTRL, "r")) == NULL) + if (acf == NULL && (acf = fopen(AUDIT_CTRL, "rF")) == NULL) retstat = ERROR; else rewind(acf); @@ -283,7 +282,7 @@ getacflg(auditstring, len) /* open file if it is not already opened */ _mutex_lock(&mutex_acf); - if (acf == NULL && (acf = fopen(AUDIT_CTRL, "r")) == NULL) + if (acf == NULL && (acf = fopen(AUDIT_CTRL, "rF")) == NULL) retstat = ERROR; else rewind(acf); @@ -376,7 +375,7 @@ getacna(auditstring, len) /* open file if it is not already opened */ _mutex_lock(&mutex_acf); - if (acf == NULL && (acf = fopen(AUDIT_CTRL, "r")) == NULL) { + if (acf == NULL && (acf = fopen(AUDIT_CTRL, "rF")) == NULL) { retstat = ERROR; } else { rewind(acf); @@ -455,7 +454,7 @@ setac() { _mutex_lock(&mutex_acf); if (acf == NULL) - acf = fopen(AUDIT_CTRL, "r"); + acf = fopen(AUDIT_CTRL, "rF"); else rewind(acf); LASTOP = DIROP; |