diff options
Diffstat (limited to '')
-rw-r--r-- | Tools/ProtoProxy/Connection.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Tools/ProtoProxy/Connection.cpp b/Tools/ProtoProxy/Connection.cpp index 79777c52e..fd7914bb6 100644 --- a/Tools/ProtoProxy/Connection.cpp +++ b/Tools/ProtoProxy/Connection.cpp @@ -2135,6 +2135,10 @@ bool cConnection::HandleServerTabCompletion(void) last = i + 1; } } + if (last < len) + { + Log(" \"%s\"", Results.substr(last, len - last).c_str()); + } COPY_TO_CLIENT(); return true; } |