The connect_handler in 0.28 needs "return DECLINED" added, otherwise all
further connect handlers are ignored.  Patch included.


--- plugins/count_unrecognized_commands (revision 64)
+++ plugins/count_unrecognized_commands (working copy)
@@ -33,6 +33,7 @@
 sub connect_handler {
   my ($self) = @_;
   $self->qp->connection->notes('unrec_cmd_count', 0);
+  return DECLINED;
 }
 
 sub check_unrec_cmd {

Reply via email to