diff options
| author | Federico Lucifredi <flucifredi@acm.org> | 2008-01-27 01:45:06 +0000 | 
|---|---|---|
| committer | Federico Lucifredi <flucifredi@acm.org> | 2008-01-27 01:45:06 +0000 | 
| commit | 87e4427cf30e4888cb6eac5a88fb64be13f4ba74 (patch) | |
| tree | 6e20066e0beca29c3c0633a2a1648c11557be9cd | |
| parent | 76ef9913041c0bc2318c1d53fc36827f7c316c61 (diff) | |
man forgets header file. man slaps forehead. man fixes.
git-svn-id: file:///home/lennart/svn/public/avahi/branches/federico2@1740 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
| -rw-r--r-- | avahi-core/dns.c | 2 | ||||
| -rw-r--r-- | avahi-core/dns.h | 4 | 
2 files changed, 4 insertions, 2 deletions
diff --git a/avahi-core/dns.c b/avahi-core/dns.c index f0f61fc..b4b7cba 100644 --- a/avahi-core/dns.c +++ b/avahi-core/dns.c @@ -944,7 +944,7 @@ AvahiRecord* avahi_get_local_zsk_pubkey(uint32_t ttl){  }  /* invoke as avahi_dnssec_sign_record(<record>, <ttl>, <private key>) */ -AvahiRecord* avahi_dnssec_sign_record(AvahiRecord *s, uint32_t ttl, EVP_PKEY private_key){ +AvahiRecord* avahi_dnssec_sign_record(AvahiRecord *s, uint32_t ttl, EVP_PKEY *private_key){      AvahiRecord *r;      AvahiRecord *key; diff --git a/avahi-core/dns.h b/avahi-core/dns.h index 24317d4..fd5281c 100644 --- a/avahi-core/dns.h +++ b/avahi-core/dns.h @@ -25,6 +25,8 @@  #include "rr.h"  #include "hashmap.h" +#include <openssl/evp.h> +  #define AVAHI_DNS_PACKET_HEADER_SIZE 12  #define AVAHI_DNS_PACKET_EXTRA_SIZE 48  #define AVAHI_DNS_LABELS_MAX 127 @@ -80,7 +82,7 @@ int avahi_dns_packet_is_empty(AvahiDnsPacket *p);  size_t avahi_dns_packet_space(AvahiDnsPacket *p);  AvahiRecord* avahi_get_local_zsk_pubkey(uint32_t ttl); -AvahiRecord* avahi_dnssec_sign_record(AvahiRecord *s, uint32_t ttl, EVP_PKEY private_key); +AvahiRecord* avahi_dnssec_sign_record(AvahiRecord *s, uint32_t ttl, EVP_PKEY *private_key);  /*AvahiRecord* avahi_get_local_trust_record();*/  | 
