diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-01-29 13:46:57 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-01-29 13:46:57 -0400 |
commit | 5a992ed938378c027ef3f70967fa0aa95cf9985a (patch) | |
tree | 9bd08879378b7c20dadb39a996571b2e73e2324a /Remote | |
parent | 69f55ab05e62d59fa37c347dc2247fba839ae4cb (diff) |
windows build fix
Diffstat (limited to 'Remote')
-rw-r--r-- | Remote/Rsync/RsyncUrl.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Rsync/RsyncUrl.hs b/Remote/Rsync/RsyncUrl.hs index 9a7319246..a7a2ac8f6 100644 --- a/Remote/Rsync/RsyncUrl.hs +++ b/Remote/Rsync/RsyncUrl.hs @@ -44,5 +44,5 @@ rsyncUrls o k = map use dirHashes #ifndef mingw32_HOST_OS hash h = h def k #else - hash h = replace "\\" "/" (h k) + hash h = replace "\\" "/" (h def k) #endif |