cmd: Quiet a noisy 'FOR /F' fixme.

This commit is contained in:
Frédéric Delanoy 2011-08-25 23:08:36 +02:00 committed by Alexandre Julliard
parent 92356ca2b7
commit 325bfc72e0
1 changed files with 4 additions and 1 deletions
programs/cmd

View File

@ -944,7 +944,10 @@ void WCMD_for (WCHAR *p, CMD_LIST **cmdList) {
only care about it if it is the path/options */
if (*curPos && *curPos != '/' && *curPos != '%') {
if (isRecursive) WINE_FIXME("/R needs to handle supplied root\n");
else WINE_FIXME("/F needs to handle options\n");
else {
static unsigned int once;
if (!once++) WINE_FIXME("/F needs to handle options\n");
}
}
break;
}