From 73ec1bf3eadc7f3bbd171721de2327fc26fd8a02 Mon Sep 17 00:00:00 2001 From: brodsom Date: Fri, 19 Sep 2003 00:36:12 +0000 Subject: [PATCH] Correction --- src/jrd/svc.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/jrd/svc.cpp b/src/jrd/svc.cpp index 039bcfa458..2b592b163c 100644 --- a/src/jrd/svc.cpp +++ b/src/jrd/svc.cpp @@ -2590,7 +2590,7 @@ static void service_put(SVC service, SCHAR * buffer, USHORT length) is_service_running(service); - while (length) { + while (length) { if (!WriteFile((HANDLE) service->svc_output, buffer, (SLONG) length, (ULONG*) &n, NULL)) { @@ -3140,9 +3140,9 @@ static void service_get( SSHORT iter = 0; int errno_save; - is_service_running(service) + is_service_running(service); - errno = 0; + errno = 0; service->svc_flags &= ~SVC_timeout; buf = buffer; @@ -3203,9 +3203,9 @@ static void service_put(SVC service, SCHAR * buffer, USHORT length) * **************************************/ - is_service_running(service) + is_service_running(service); - while (length--) { + while (length--) { if (ib_putc(*buffer, (IB_FILE *) service->svc_output) != EOF) buffer++; else if (SYSCALL_INTERRUPTED(errno)) {