You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2010/10/02 16:30:11 UTC

svn commit: r1003806 - /commons/proper/daemon/trunk/src/native/windows/src/service.c

Author: mturk
Date: Sat Oct  2 14:30:11 2010
New Revision: 1003806

URL: http://svn.apache.org/viewvc?rev=1003806&view=rev
Log:
Actually we can have spaces as well. If someone wishes to use '//IS//foo bar' let them be :)

Modified:
    commons/proper/daemon/trunk/src/native/windows/src/service.c

Modified: commons/proper/daemon/trunk/src/native/windows/src/service.c
URL: http://svn.apache.org/viewvc/commons/proper/daemon/trunk/src/native/windows/src/service.c?rev=1003806&r1=1003805&r2=1003806&view=diff
==============================================================================
--- commons/proper/daemon/trunk/src/native/windows/src/service.c (original)
+++ commons/proper/daemon/trunk/src/native/windows/src/service.c Sat Oct  2 14:30:11 2010
@@ -39,7 +39,7 @@ typedef struct APXSERVICE {
 
 } APXSERVICE, *LPAPXSERVICE;
 
-static WCHAR __invalidPathChars[] = L" <>:\"/\\:|?*";
+static WCHAR __invalidPathChars[] = L"<>:\"/\\:|?*";
 static BOOL __apxIsValidServiceName(LPCWSTR szServiceName)
 {
     WCHAR ch;