diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2013-01-28 12:33:02 -0500 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2013-01-28 12:33:02 -0500 |
commit | 27c33a2f42363b28f3ec7e5179fcba51cf3c3e7b (patch) | |
tree | 014ceb593a4f716a56c7f0f9f7c007f9680c5269 /vxi11_server.c | |
parent | 5153f39a6bbeee5b5c4ba01f95e9c91834f1d4f7 (diff) |
added vxi remote/local functionality
Diffstat (limited to 'vxi11_server.c')
-rw-r--r-- | vxi11_server.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/vxi11_server.c b/vxi11_server.c index f5204e5..08e0d94 100644 --- a/vxi11_server.c +++ b/vxi11_server.c @@ -375,6 +375,7 @@ device_remote_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) { else { touchlink(argp->lid); result.error = 0; + globals.Remote.vxi_panel_lock = 1; } } return &result; @@ -396,6 +397,7 @@ device_local_1_svc(Device_GenericParms *argp, struct svc_req *rqstp) { else { touchlink(argp->lid); result.error = 0; + globals.Remote.vxi_panel_lock = 0; } } return &result; |