From 325bfc72e072585db4c09fc089ece10c01d03f1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20Delanoy?= Date: Thu, 25 Aug 2011 23:08:36 +0200 Subject: [PATCH] cmd: Quiet a noisy 'FOR /F' fixme. --- programs/cmd/builtins.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/programs/cmd/builtins.c b/programs/cmd/builtins.c index 99c4c3a9c8a..5d7df824884 100644 --- a/programs/cmd/builtins.c +++ b/programs/cmd/builtins.c @@ -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; }