]> jfr.im git - irc/SurrealServices/srsv.git/commitdiff
Fixed two instances of a typo, which made services say that
authormusashix90 <redacted>
Sat, 1 May 2010 23:14:18 +0000 (23:14 +0000)
committermusashix90 <redacted>
Sat, 1 May 2010 23:14:18 +0000 (23:14 +0000)
a variable was killed off upon connecting

git-svn-id: http://svn.tabris.net/repos/srsv@3456 70d4eda1-72e9-0310-a436-91e5bd24443c

branches/0.4.3/SrSv/Unreal/Send.pm

index b0008b06bcb68c3e501e2e051592cbc1f59281e6..25a7939ec2b6761b81a723c975d7df7756f27bb7 100644 (file)
@@ -513,7 +513,7 @@ sub svsnoop($$$) {
     $src = main_conf_local unless defined($src);
     if ($bool > 0) { $bool = '+'; } else { $bool = '-'; }
 #this is SVS NO-OP not SVS SNOOP
-    ircsend(":main_conf_local @{[TOK_SVSNOOP]} $targetserver $bool");
+    ircsend(":".main_conf_local." @{[TOK_SVSNOOP]} $targetserver $bool");
 }
 
 sub svswatch ($$@) {
@@ -672,7 +672,7 @@ sub svskill($$$) {
 
 sub version($) {
        my ($src) = @_;
-       ircsend(":main_conf_local 351 $src $main::progname ver $main::version main_conf_local ".
+       ircsend(":".main_conf_local." 351 $src $main::progname ver $main::version ".main_conf_local." ".
                $main::extraversion);
 }