]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Hgfs Win Client: fix bad illegal character escaping; not applicable to open-vm-tools.
authorOliver Kurth <okurth@vmware.com>
Tue, 19 Jun 2018 18:07:44 +0000 (11:07 -0700)
committerOliver Kurth <okurth@vmware.com>
Tue, 19 Jun 2018 18:07:44 +0000 (11:07 -0700)
open-vm-tools/lib/hgfs/hgfsEscape.c

index 559b146ec50b3c3a55255b0269a0689ba33391c7..5166d799c8a916cae733c31e8f2b9891317c76ab 100644 (file)
@@ -1,5 +1,5 @@
 /*********************************************************
- * Copyright (C) 2008-2016 VMware, Inc. All rights reserved.
+ * Copyright (C) 2008-2018 VMware, Inc. All rights reserved.
  *
  * This program is free software; you can redistribute it and/or modify it
  * under the terms of the GNU Lesser General Public License as published
@@ -67,7 +67,7 @@
 
 /* These characters are illegal in Windows file names. */
 const char* HGFS_ILLEGAL_CHARS = "/\\*?:\"<>|";
-const char* HGFS_SUBSTITUTE_CHARS = "!@#$^&(){}";
+const char* HGFS_SUBSTITUTE_CHARS = "!@#$^&(){";
 /* Last character of a file name in Windows can be neither dot nor space. */
 const char* HGFS_ILLEGAL_LAST_CHARS = ". ";