audit-make-int-functions-return-zero-20010602
authorNathan Neulinger <nneul@umr.edu>
Sun, 3 Jun 2001 17:23:18 +0000 (17:23 +0000)
committerDerrick Brashear <shadow@dementia.org>
Sun, 3 Jun 2001 17:23:18 +0000 (17:23 +0000)
rather than just having no code block, return 0

src/audit/audit.c

index 9737811..028ab9e 100644 (file)
@@ -419,10 +419,10 @@ int osi_audit_check ()
 #else /* ! AFS_AIX_ENV */
 
 int osi_audit (char *audEvent, afs_int32 errCode, ...)
-{}
+{ return 0; }
 
 int osi_auditU (struct rx_call *call, char *audEvent, int errCode, ...)
-{}
+{ return 0; }
 
 #endif