mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
fix for logic bug in ldap base script
This commit is contained in:
parent
24e182f080
commit
501bf167c3
1 changed files with 1 additions and 1 deletions
|
@ -203,7 +203,7 @@ event LDAP::message(c: connection,
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( diagnostic_message != "" ) {
|
if ( diagnostic_message != "" ) {
|
||||||
if ( ! sm?$diagnostic_message && sm$diagnostic_message != diagnostic_message ) {
|
if ( sm?$diagnostic_message && sm$diagnostic_message != diagnostic_message ) {
|
||||||
Reporter::conn_weird("LDAP_search_diagnostic_message_change", c,
|
Reporter::conn_weird("LDAP_search_diagnostic_message_change", c,
|
||||||
fmt("%s: %s -> %s", message_id, sm$diagnostic_message, diagnostic_message), "LDAP");
|
fmt("%s: %s -> %s", message_id, sm$diagnostic_message, diagnostic_message), "LDAP");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue