diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-08-16 10:36:05 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-08-16 10:36:05 -0400 |
commit | b82557c9fb60f11fd2696c8fb2ae17b9dfd915ed (patch) | |
tree | d21b202f1b12078d2ca46e7b2de2445fc4df38d0 /Xext/dpms.c | |
parent | 568ae737d1d5d476a0bf85659d88910c4e0ef5e0 (diff) |
xace: add hooks + new access codes: core protocol screensaver requests
Diffstat (limited to 'Xext/dpms.c')
-rw-r--r-- | Xext/dpms.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Xext/dpms.c b/Xext/dpms.c index aced40639..97622cb96 100644 --- a/Xext/dpms.c +++ b/Xext/dpms.c @@ -218,7 +218,7 @@ ProcDPMSDisable(client) REQUEST_SIZE_MATCH(xDPMSDisableReq); - DPMSSet(DPMSModeOn); + DPMSSet(client, DPMSModeOn); DPMSEnabled = FALSE; @@ -253,7 +253,7 @@ ProcDPMSForceLevel(client) return BadValue; } - DPMSSet(stuff->level); + DPMSSet(client, stuff->level); return(client->noClientException); } |