Adding the missing patch file and updated sources for open-vm-tools-9.4.6-1770165.tar.gz
This commit is contained in:
parent
cee4389594
commit
3031fb5279
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,3 +1,4 @@
|
||||
/open-vm-tools-9.2.2-893683.tar.gz
|
||||
/open-vm-tools-9.2.3-1031360.tar.gz
|
||||
/open-vm-tools-9.4.0-1280544.tar.gz
|
||||
/open-vm-tools-9.4.6-1770165.tar.gz
|
||||
|
12
sizeof_argument.patch
Normal file
12
sizeof_argument.patch
Normal file
@ -0,0 +1,12 @@
|
||||
--- open-vm-tools-9.4.6-1770165.orig/lib/syncDriver/syncDriverPosix.c 2014-07-15 13:42:21.043818478 -0700
|
||||
+++ open-vm-tools-9.4.6-1770165/lib/syncDriver/syncDriverPosix.c 2014-07-15 13:55:41.724103304 -0700
|
||||
@@ -72,8 +72,7 @@
|
||||
size_t i;
|
||||
|
||||
for (i = 0; i < ARRAYSIZE(gRemoteFSTypes); i++) {
|
||||
- if (Str_Strncmp(fsType, gRemoteFSTypes[i],
|
||||
- sizeof gRemoteFSTypes[i]) == 0) {
|
||||
+ if (Str_Strcmp(gRemoteFSTypes[i], fsType) == 0) {
|
||||
return TRUE;
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user