aboutsummaryrefslogtreecommitdiff
path: root/protocols
diff options
context:
space:
mode:
authorTest_User <hax@andrewyu.org>2024-06-18 03:46:10 -0400
committerTest_User <hax@andrewyu.org>2024-06-18 03:46:10 -0400
commitee14f7485128302bd6d8f858c157e92d06756160 (patch)
tree2a0a8701232cdcf92b61bee311a41f717fb2edd6 /protocols
parentc659e513998394e450bfa39b27adf1fb1347dd99 (diff)
downloadhaxircd-ee14f7485128302bd6d8f858c157e92d06756160.tar.gz
haxircd-ee14f7485128302bd6d8f858c157e92d06756160.zip
`get` help message, fix inspircd v3 pong
Diffstat (limited to 'protocols')
-rw-r--r--protocols/inspircd3.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/protocols/inspircd3.c b/protocols/inspircd3.c
index 864b0d1..5811bb6 100644
--- a/protocols/inspircd3.c
+++ b/protocols/inspircd3.c
@@ -1140,9 +1140,9 @@ int inspircd3_protocol_handle_ping(struct string source, size_t argc, struct str
return 0;
networks[net].send(handle, STRING(":"));
- networks[net].send(handle, argv[1]);
- networks[net].send(handle, STRING(" PONG :"));
networks[net].send(handle, argv[0]);
+ networks[net].send(handle, STRING(" PONG :"));
+ networks[net].send(handle, source);
networks[net].send(handle, STRING("\n"));
return 0;