lcore.org gitweb
/
lcore.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
fb53260
)
fixed missing semicolon if compiling without ipv6
author
beware
<beware@bircd.org>
Wed, 23 Nov 2011 00:04:55 +0000
(
00:04
+0000)
committer
beware
<beware@bircd.org>
Wed, 23 Nov 2011 00:04:55 +0000
(
00:04
+0000)
git-svn-id: file:///svnroot/lcore/trunk@106
b1de8a11
-f9be-4011-bde0-
cc7ace90066a
lsocket.pas
patch
|
blob
|
history
diff --git
a/lsocket.pas
b/lsocket.pas
index 72ef891b2966e0d6e8e0985f2107f987d9d2ffe4..573644b5520fedb90206ad22c10cac6103e8ccc7 100755
(executable)
--- a/
lsocket.pas
+++ b/
lsocket.pas
@@
-587,7
+587,7
@@
begin
destx := {$ifdef win32}winsock.pSockAddr{$else}pInetSockAddrV{$endif}(@dest)
\r
end;
\r
{$else}
\r
- destx := {$ifdef win32}winsock.pSockAddr{$else}pInetSockAddrV{$endif}(@dest)
\r
+ destx := {$ifdef win32}winsock.pSockAddr{$else}pInetSockAddrV{$endif}(@dest)
;
\r
{$endif}
\r
\r
result := {$ifdef win32}winsock.sendto{$else}system_sendto{$endif}(self.fdhandleout,data^,len,0,destx^,destlen);
\r