summaryrefslogtreecommitdiffstats
path: root/avahi-core
diff options
context:
space:
mode:
authorFederico Lucifredi <flucifredi@acm.org>2007-12-27 10:13:44 +0000
committerFederico Lucifredi <flucifredi@acm.org>2007-12-27 10:13:44 +0000
commit39fbabe5616d5eedaf775bc34dc10420d2e7113b (patch)
treef99be8cecbce354c2c3a535f4f1949ea8b0f4cab /avahi-core
parent94bae174e1e6d95b1f6bbe2b647994331ab510df (diff)
whoops. struct scope missing.
git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico@1665 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-core')
-rw-r--r--avahi-core/wide-area.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/avahi-core/wide-area.c b/avahi-core/wide-area.c
index 4d5d2fd..2064996 100644
--- a/avahi-core/wide-area.c
+++ b/avahi-core/wide-area.c
@@ -826,7 +826,7 @@ AvahiRecord* tsig_sign_packet(const unsigned char* keyname, const unsigned char*
HMAC_Update(&ctx, uint16_to_canonical_string(r->data.tsig.other_len), 2);
- HMAC_Update(&ctx, r->data.tsig.other_data, other_len); /* should work if other_len =0 can be passed to the HMAC */
+ HMAC_Update(&ctx, r->data.tsig.other_data, r->data.tsig.other_len); /* should work if other_len =0 can be passed to the HMAC */
HMAC_Final(&ctx, keyed_hash, &hash_length);
HMAC_cleanup(&ctx);