Skip to content

Commit

Permalink
tls: fix a tls.fingerprint issue in debug mode
Browse files Browse the repository at this point in the history
Print proper variable so we don't NULL-deref.

Bug #1279.
  • Loading branch information
victorjulien committed Sep 19, 2014
1 parent e0307b0 commit 8b4615f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/detect-tls.c
Expand Up @@ -661,7 +661,7 @@ static DetectTlsData *DetectTlsFingerprintParse (char *str)

SCFree(orig);

SCLogDebug("will look for TLS fingerprint %s", tls->subject);
SCLogDebug("will look for TLS fingerprint %s", tls->fingerprint);

return tls;

Expand Down

0 comments on commit 8b4615f

Please sign in to comment.