From 38b17e4d94618346d3ed05e8d76182568fb06959 Mon Sep 17 00:00:00 2001 From: mazze Date: Wed, 16 May 2012 12:27:18 +0000 Subject: [PATCH] Fix for the problem that dir ? didn't print the template. git-svn-id: https://svn.aros.org/svn/aros/trunk/AROS@44824 fb15a70f-31f2-0310-bbcc-cdcc74a49acc --- rom/dos/readargs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rom/dos/readargs.c b/rom/dos/readargs.c index ed048a262b..230a8dd0a0 100644 --- a/rom/dos/readargs.c +++ b/rom/dos/readargs.c @@ -52,7 +52,7 @@ static inline LONG is_question(BYTE * buff, LONG buffsize) LONG i, j = 0; BOOL escaped = FALSE, quoted = FALSE, - seen_space = FALSE, + seen_space = TRUE, seen_question = FALSE; /* Reach end of line */ -- 2.11.4.GIT