Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 209079 | Differences between
and this patch

Collapse All | Expand All

(-)a/source/svcinstall.c (-2 / +1 lines)
Lines 30-36 Link Here
30
#define SERVICE_DEMAND_START (0x00000003)
30
#define SERVICE_DEMAND_START (0x00000003)
31
#define SERVICE_ERROR_NORMAL (0x00000001)
31
#define SERVICE_ERROR_NORMAL (0x00000001)
32
#define SERVICE_CONTROL_STOP (0x00000001)
32
#define SERVICE_CONTROL_STOP (0x00000001)
33
#define NT_STATUS_SERVICE_DOES_NOT_EXIST NT_STATUS(0xc0000424)
33
#define NT_STATUS_SERVICE_DOES_NOT_EXIST NT_STATUS(0x00000424)
34
34
35
#define NT_ERR(status, lvl, args...) if (!NT_STATUS_IS_OK(status)) { DEBUG(lvl,("ERROR: " args)); DEBUG(lvl,(". %s.\n", nt_errstr(status))); return status; }
35
#define NT_ERR(status, lvl, args...) if (!NT_STATUS_IS_OK(status)) { DEBUG(lvl,("ERROR: " args)); DEBUG(lvl,(". %s.\n", nt_errstr(status))); return status; }
36
#define NT_RES(status, werr) (NT_STATUS_IS_OK(status) ? werror_to_ntstatus(werr) : status)
36
#define NT_RES(status, werr) (NT_STATUS_IS_OK(status) ? werror_to_ntstatus(werr) : status)
37
- 

Return to bug 209079