to browse Apache 1.3, 2.0 and now, 2.1+ installed httpd services.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x@202265
13f79535-47bb-0310-9956-
ffa450edef68
lstrcpy(szBuf, szImagePath);
CharLower(szBuf);
/* the service name could be Apache*.exe */
- if ((strstr(szBuf, "\\apache") != NULL)
+ /* the service name could be httpd*.exe or Apache*.exe */
+ if (((strstr(szBuf, "\\apache") != NULL)
+ || (strstr(szBuf, "\\httpd") != NULL))
&& strstr(szBuf, ".exe")
&& (strstr(szBuf, "--ntservice") != NULL
|| strstr(szBuf, "-k ") != NULL))