From 46a8ab72414cd5719128110eac3a59aff2750323 Mon Sep 17 00:00:00 2001 From: Massimo Belgrano Date: Sun, 4 Jul 2010 16:16:12 +0000 Subject: [PATCH] small typo posted by Jacek Kubica IF hb_socketGerError() should be IF hb_socketGetError() ... --- harbour/examples/httpsrv/uhttpd.prg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/harbour/examples/httpsrv/uhttpd.prg b/harbour/examples/httpsrv/uhttpd.prg index af8feaf002..9bdc2293a5 100644 --- a/harbour/examples/httpsrv/uhttpd.prg +++ b/harbour/examples/httpsrv/uhttpd.prg @@ -600,7 +600,7 @@ FUNCTION MAIN( ... ) // Wait a connection IF EMPTY( hSocket := hb_socketAccept( hListen, @aRemote, 50 ) ) - IF hb_socketGerError() == HB_SOCKET_ERR_TIMEOUT + IF hb_socketGetError() == HB_SOCKET_ERR_TIMEOUT // Checking if I have to quit IF HB_FileExists( FILE_STOP ) FERASE( FILE_STOP )