]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE14-volser-audit-setids-fix-20050831
authorDerrick Brashear <shadow@dementia.org>
Wed, 31 Aug 2005 23:14:59 +0000 (23:14 +0000)
committerDerrick Brashear <shadow@dementia.org>
Wed, 31 Aug 2005 23:14:59 +0000 (23:14 +0000)
FIXES 21263

type is an int, not a string

(cherry picked from commit 36c57c994ae750dd5f673de5574f0505d67b4e1f)

src/volser/volprocs.c

index 9499360dc4a1fa3ff90c7487b8138ec03381b315..d0a1659b93c987b2ed9bc3785eaaf314e4614342 100644 (file)
@@ -2640,7 +2640,7 @@ SAFSVolSetIdsTypes(struct rx_call *acid, afs_int32 atid, char name[], afs_int32
 
     code = VolSetIdsTypes(acid, atid, name, type, pId, cloneId, backupId);
     osi_auditU(acid, VS_SetIdTyEvent, code, AUD_LONG, atid, AUD_STR, name,
-              AUD_STR, type, AUD_LONG, pId, AUD_LONG, cloneId, AUD_LONG,
+              AUD_LONG, type, AUD_LONG, pId, AUD_LONG, cloneId, AUD_LONG,
               backupId, AUD_END);
     return code;
 }