summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorroot <root@avtech.domain.avtechpulse.com>1999-12-31 20:46:50 -0500
committerroot <root@avtech.domain.avtechpulse.com>1999-12-31 20:46:50 -0500
commit8152c5b83f164d4f7e265f8c1bb2d81e88a5bf97 (patch)
treee6581f9b7cd1385c64f1dea81b4bf599c4165250
parent4e77d77e5dd1ea4268100bf870c58e45a86cb9ce (diff)
device_trigger now returns ERR_OPERATIONNOTSUPPORTED
-rw-r--r--vxi11_server.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vxi11_server.c b/vxi11_server.c
index 79ff9f7..57ec50b 100644
--- a/vxi11_server.c
+++ b/vxi11_server.c
@@ -333,7 +333,7 @@ device_trigger_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) {
result.error = ERR_DEVICELOCKEDBYANOTHERLINK;
else {
touchlink(argp->lid);
- result.error = 0;
+ result.error = ERR_OPERATIONNOTSUPPORTED;
}
return &result;
}