[PATCH 13/18] XCOPY: Add support for /EXCLUDELIST:file1+file2 etc

Alexandre Julliard julliard at winehq.org
Fri Mar 30 03:30:46 CDT 2007


Jason Edmeades <us at edmeades.me.uk> writes:

> +                /* Loop through testing each exclude line */
> +                while (pos) {
> +                    if (wcsstr(copyFromUpper, pos->name) != NULL) {
> +                        WINE_TRACE("Skipping file as matches exclude '%s'\n",
> +                                   wine_dbgstr_w(pos->name));

wcsstr() doesn't seem the right way to compare file names. You
probably want to do a wcsicmp() of the end of the name or something
like that.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list