@@ -1690,7 +1690,7 @@ int main(int argc, char *argv[])
16901690{
16911691 int retval = 1 ;
16921692
1693- set_aumessage_mode (MSG_STDERR , DBG_NO );
1693+ _set_aumessage_mode (MSG_STDERR , DBG_NO );
16941694
16951695 if (argc == 1 ) {
16961696 usage ();
@@ -1710,7 +1710,7 @@ int main(int argc, char *argv[])
17101710 if ((argc == 3 ) && (strcmp (argv [1 ], "-R" ) == 0 )) {
17111711 // If reading a file, its most likely start up. Send problems
17121712 // to syslog where they will persist for later review
1713- set_aumessage_mode (MSG_SYSLOG , DBG_NO );
1713+ _set_aumessage_mode (MSG_SYSLOG , DBG_NO );
17141714 fd = audit_open ();
17151715 if (is_ready () == 0 )
17161716 return 1 ;
@@ -1784,9 +1784,9 @@ static int handle_request(int status)
17841784 audit_rule_syscallbyname_data (
17851785 rule_new , "all" );
17861786 }
1787- set_aumessage_mode (MSG_QUIET , DBG_NO );
1787+ _set_aumessage_mode (MSG_QUIET , DBG_NO );
17881788 rc = audit_add_rule_data (fd , rule_new , add , action );
1789- set_aumessage_mode (MSG_STDERR , DBG_NO );
1789+ _set_aumessage_mode (MSG_STDERR , DBG_NO );
17901790 /* Retry for legacy kernels */
17911791 if (rc < 0 ) {
17921792 if (errno == EINVAL &&
@@ -1808,10 +1808,10 @@ static int handle_request(int status)
18081808 audit_rule_syscallbyname_data (
18091809 rule_new , "all" );
18101810 }
1811- set_aumessage_mode (MSG_QUIET , DBG_NO );
1811+ _set_aumessage_mode (MSG_QUIET , DBG_NO );
18121812 rc = audit_delete_rule_data (fd , rule_new ,
18131813 del , action );
1814- set_aumessage_mode (MSG_STDERR , DBG_NO );
1814+ _set_aumessage_mode (MSG_STDERR , DBG_NO );
18151815 /* Retry for legacy kernels */
18161816 if (rc < 0 ) {
18171817 if (errno == EINVAL &&
0 commit comments