From: beware <beware@bircd.org>
Date: Wed, 23 Nov 2011 00:04:55 +0000 (+0000)
Subject: fixed missing semicolon if compiling without ipv6
X-Git-Url: http://www.lcore.org/git/lcore.git/commitdiff_plain/12873c59bfaeb05331a96c3611843aceedc899e0?hp=fb5326037eba3c03fc24b645811e2e460365e8b9

fixed missing semicolon if compiling without ipv6

git-svn-id: file:///svnroot/lcore/trunk@106 b1de8a11-f9be-4011-bde0-cc7ace90066a
---

diff --git a/lsocket.pas b/lsocket.pas
index 72ef891..573644b 100755
--- a/lsocket.pas
+++ b/lsocket.pas
@@ -587,7 +587,7 @@ begin
       destx := {$ifdef win32}winsock.pSockAddr{$else}pInetSockAddrV{$endif}(@dest)
     end;
   {$else}
-    destx := {$ifdef win32}winsock.pSockAddr{$else}pInetSockAddrV{$endif}(@dest)
+    destx := {$ifdef win32}winsock.pSockAddr{$else}pInetSockAddrV{$endif}(@dest);
   {$endif}
 
   result := {$ifdef win32}winsock.sendto{$else}system_sendto{$endif}(self.fdhandleout,data^,len,0,destx^,destlen);