cacls: Print out arguments.

This commit is contained in:
André Hentschel 2012-12-25 17:30:51 +01:00 committed by Alexandre Julliard
parent 2c8ea6ebff
commit 04f40b7059
1 changed files with 7 additions and 0 deletions

View File

@ -26,6 +26,13 @@ WINE_DEFAULT_DEBUG_CHANNEL(cacls);
int main(int argc, char** argv)
{
int i;
WINE_FIXME("This is dummy cacls, not performing ACL manipulations\n");
WINE_FIXME("stub:");
for (i = 0; i < argc; i++)
WINE_FIXME(" %s", wine_dbgstr_a(argv[i]));
WINE_FIXME("\n");
return 0;
}