Commit 04f40b70 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

cacls: Print out arguments.

parent 2c8ea6eb
......@@ -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;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment