View Single Post
  #1  
Old 01-19-2013, 12:55 AM
c0ncrete's Avatar
c0ncrete
Dragon
 
Join Date: Dec 2009
Posts: 719
Default perl_client.cpp copy paste issue

Code:
newXSproto(strcpy(buf, "GetBindZoneID"), XS_Client_GetBindX, file, "$$");
should read
Code:
newXSproto(strcpy(buf, "GetBindZoneID"), XS_Client_GetBindZoneID, file, "$$");
note: from rev 2416
__________________
I muck about @ The Forge.
say(rand 99>49?'try '.('0x'.join '',map{unpack 'H*',chr rand 256}1..2):'incoherent nonsense')while our $Noport=1;

Last edited by c0ncrete; 01-19-2013 at 01:01 AM.. Reason: added revision
Reply With Quote