diff options
-rw-r--r-- | src/modules/m_spanningtree.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/m_spanningtree.cpp b/src/modules/m_spanningtree.cpp index 734640895..35a575675 100644 --- a/src/modules/m_spanningtree.cpp +++ b/src/modules/m_spanningtree.cpp @@ -1406,7 +1406,10 @@ class TreeSocket : public InspSocket // pad it to the key length int n = line.length() % this->keylength; if (n) + { + log(DEBUG,"Append %d chars to line to make it %d long from %d",n,n+line.length(),line.length()); line.append(n,'\7'); + } } unsigned int ll = line.length(); ctx_out->Encrypt(line.c_str(), result, ll, 1); |