aboutsummaryrefslogtreecommitdiffstats
path: root/rfb_win32/FolderManager.cxx
diff options
context:
space:
mode:
authorDennis Syrovatsky <dennis@tightvnc.com>2005-12-05 10:55:51 +0000
committerDennis Syrovatsky <dennis@tightvnc.com>2005-12-05 10:55:51 +0000
commit922ee6a01625c9e7c49926520e8f4b0ba0503454 (patch)
treebe7dd848a8fd93eba355fd32f53614caa51ab664 /rfb_win32/FolderManager.cxx
parent092d9983fccb47d3a5ce1bf8959a36e7ff2c1210 (diff)
downloadtigervnc-922ee6a01625c9e7c49926520e8f4b0ba0503454.tar.gz
tigervnc-922ee6a01625c9e7c49926520e8f4b0ba0503454.zip
Code evalution.
Now it's possible the deleting files and folders on both sides (local and remote). git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@434 3789f03b-4d11-0410-bbf8-ca57d06f2519
Diffstat (limited to 'rfb_win32/FolderManager.cxx')
-rw-r--r--rfb_win32/FolderManager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/rfb_win32/FolderManager.cxx b/rfb_win32/FolderManager.cxx
index cbae7d90..06daf311 100644
--- a/rfb_win32/FolderManager.cxx
+++ b/rfb_win32/FolderManager.cxx
@@ -195,7 +195,7 @@ FolderManager::getInfo(char *pFullPath, FILEINFO *pFIStruct)
SetErrorMode(0);
if (hFile != INVALID_HANDLE_VALUE) {
FindClose(hFile);
- strcpy(pFIStruct->name, FindFileData.cFileName);
+ strcpy(pFIStruct->name, pFullPath);
pFIStruct->info.data = getTime70(FindFileData.ftLastWriteTime);
if (FindFileData.dwFileAttributes & FILE_ATTRIBUTE_DIRECTORY) {
pFIStruct->info.size = 0;