Merge pull request #95 from selvanair/trac-758

Add missing WINAPI in the declaration of HandleServiceIO

Acked-by: Gert Doering <gert@greenie.muc.de>
pull/96/head
Selva Nair 8 years ago committed by GitHub
commit 38ca9a93f0

@ -655,7 +655,7 @@ InitServiceIO (service_io_t *s)
* Read-completion routine for interactive service pipe. Call with * Read-completion routine for interactive service pipe. Call with
* err = 0, bytes = 0 to queue the first read request. * err = 0, bytes = 0 to queue the first read request.
*/ */
static void static void WINAPI
HandleServiceIO (DWORD err, DWORD bytes, LPOVERLAPPED lpo) HandleServiceIO (DWORD err, DWORD bytes, LPOVERLAPPED lpo)
{ {
service_io_t *s = (service_io_t *) lpo; service_io_t *s = (service_io_t *) lpo;
@ -680,7 +680,7 @@ HandleServiceIO (DWORD err, DWORD bytes, LPOVERLAPPED lpo)
} }
/* queue next read request */ /* queue next read request */
ReadFileEx (s->pipe, s->readbuf, capacity, lpo, (LPOVERLAPPED_COMPLETION_ROUTINE) HandleServiceIO); ReadFileEx (s->pipe, s->readbuf, capacity, lpo, HandleServiceIO);
/* Any error in the above call will get checked in next round */ /* Any error in the above call will get checked in next round */
} }
@ -1437,7 +1437,7 @@ CheckVersion()
retval = TRUE; retval = TRUE;
p = strtok(p+8, " "); p = strtok(p+8, " ");
strncpy(o.ovpn_version, p, _countof(o.ovpn_version)-1); strncpy(o.ovpn_version, p, _countof(o.ovpn_version)-1);
o.ovpn_version[_countof(o.ovpn_version)] = '\0'; o.ovpn_version[_countof(o.ovpn_version)-1] = '\0';
} }
} }

Loading…
Cancel
Save