Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
df2120e5
Commit
df2120e5
authored
May 08, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
May 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
services.exe: Spelling fixes.
parent
5714c4de
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
services.c
programs/services/services.c
+4
-4
No files found.
programs/services/services.c
View file @
df2120e5
...
...
@@ -274,7 +274,7 @@ BOOL validate_service_config(struct service_entry *entry)
{
if
(
entry
->
config
.
dwServiceType
&
SERVICE_WIN32
&&
(
entry
->
config
.
lpBinaryPathName
==
NULL
||
!
entry
->
config
.
lpBinaryPathName
[
0
]))
{
WINE_ERR
(
"Service %s is Win32 but ha
ve
no image path set
\n
"
,
wine_dbgstr_w
(
entry
->
name
));
WINE_ERR
(
"Service %s is Win32 but ha
s
no image path set
\n
"
,
wine_dbgstr_w
(
entry
->
name
));
return
FALSE
;
}
...
...
@@ -296,18 +296,18 @@ BOOL validate_service_config(struct service_entry *entry)
}
break
;
default:
WINE_ERR
(
"Service %s ha
ve
unknown service type
\n
"
,
wine_dbgstr_w
(
entry
->
name
));
WINE_ERR
(
"Service %s ha
s an
unknown service type
\n
"
,
wine_dbgstr_w
(
entry
->
name
));
return
FALSE
;
}
/* StartType can only be a single value (if several values are mixed the result is probably not what was intended) */
if
(
entry
->
config
.
dwStartType
>
SERVICE_DISABLED
)
{
WINE_ERR
(
"Service %s ha
ve
unknown start type
\n
"
,
wine_dbgstr_w
(
entry
->
name
));
WINE_ERR
(
"Service %s ha
s an
unknown start type
\n
"
,
wine_dbgstr_w
(
entry
->
name
));
return
FALSE
;
}
/* SERVICE_BOOT_START and SERVICE_SYSTEM_START
or
only allowed for driver services */
/* SERVICE_BOOT_START and SERVICE_SYSTEM_START
are
only allowed for driver services */
if
(((
entry
->
config
.
dwStartType
==
SERVICE_BOOT_START
)
||
(
entry
->
config
.
dwStartType
==
SERVICE_SYSTEM_START
))
&&
((
entry
->
config
.
dwServiceType
&
SERVICE_WIN32_OWN_PROCESS
)
||
(
entry
->
config
.
dwServiceType
&
SERVICE_WIN32_SHARE_PROCESS
)))
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment