Remove spurious fprintf arguments

This commit is contained in:
Hallvard Furuseth 2005-07-17 11:55:34 +00:00
parent bf1d1a84bd
commit 98a303fca9

View file

@ -961,12 +961,12 @@ parse_acl(
fprintf( stderr,
"%s: line %d: \"onelevel\" should be used "
"instead of \"level{1}\" in by DN clause\n",
fname, lineno, 0 );
fname, lineno );
} else if ( level == 0 && sty == ACL_STYLE_LEVEL ) {
fprintf( stderr,
"%s: line %d: \"base\" should be used "
"instead of \"level{0}\" in by DN clause\n",
fname, lineno, 0 );
fname, lineno );
}
bdn->a_level = level;
@ -1034,7 +1034,7 @@ parse_acl(
fprintf( stderr, "%s: line %d: "
"deprecated group style \"regex\"; "
"use \"expand\" instead\n",
fname, lineno, style );
fname, lineno );
sty = ACL_STYLE_EXPAND;
break;