summaryrefslogtreecommitdiff
path: root/stun/stunagent.c
diff options
context:
space:
mode:
authorYouness Alaoui <youness.alaoui@collabora.co.uk>2009-02-12 18:56:29 -0500
committerYouness Alaoui <youness.alaoui@collabora.co.uk>2009-02-12 18:56:29 -0500
commit72e94d7c98df5223f7b7b78529b10ee86f44956b (patch)
tree1359b1bd86288b5b36c9b3fe1052ae771e95c1af /stun/stunagent.c
parente2f0151054af721d383a39543c7c5847c99eb5a0 (diff)
downloadlibnice-72e94d7c98df5223f7b7b78529b10ee86f44956b.tar.gz
No more need to ignore the fingerprint now that we know what was wrong with M$ crc32 algo
Diffstat (limited to 'stun/stunagent.c')
-rw-r--r--stun/stunagent.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/stun/stunagent.c b/stun/stunagent.c
index 7679c8d..c8b1e88 100644
--- a/stun/stunagent.c
+++ b/stun/stunagent.c
@@ -157,8 +157,7 @@ StunValidationStatus stun_agent_validate (StunAgent *agent, StunMessage *msg,
if (fpr != crc32) {
stun_debug ("STUN demux error: bad fingerprint: 0x%08x,"
" expected: 0x%08x!\n", fpr, crc32);
- if (agent->compatibility != STUN_COMPATIBILITY_WLM2009)
- return STUN_VALIDATION_BAD_REQUEST;
+ return STUN_VALIDATION_BAD_REQUEST;
}
stun_debug ("STUN demux: OK!\n");