Commit 0d527532 authored by Gerald Pfeifer's avatar Gerald Pfeifer Committed by Alexandre Julliard

cmd: Remove variable copyFromDir which is not really used from WCMD_copy.

parent 3ff0890c
......@@ -175,7 +175,6 @@ void WCMD_copy (void) {
DWORD len;
static const WCHAR copyCmdW[] = {'C','O','P','Y','C','M','D','\0'};
BOOL copyToDir = FALSE;
BOOL copyFromDir = FALSE;
WCHAR srcspec[MAX_PATH];
DWORD attribs;
WCHAR drive[10];
......@@ -204,7 +203,6 @@ void WCMD_copy (void) {
/* If a directory, then add \* on the end when searching */
if (attribs & FILE_ATTRIBUTE_DIRECTORY) {
strcatW(srcpath, slashW);
copyFromDir = TRUE;
strcatW(srcspec, slashW);
strcatW(srcspec, starW);
} else {
......
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