From: Ted Lemon Date: Fri, 9 Jun 2000 23:07:56 +0000 (+0000) Subject: Add a missing store that was masked by the i386 calling conventions. X-Git-Tag: V3-BETA-2-PATCH-1~157 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7d35446486a7070cdd2ab84f70057433e5d0ed7d;p=thirdparty%2Fdhcp.git Add a missing store that was masked by the i386 calling conventions. --- diff --git a/common/dns.c b/common/dns.c index b3ce2cf71..a27e8f167 100644 --- a/common/dns.c +++ b/common/dns.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dns.c,v 1.24 2000/05/16 23:02:17 mellon Exp $ Copyright (c) 2000 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dns.c,v 1.25 2000/06/09 23:07:56 mellon Exp $ Copyright (c) 2000 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -179,6 +179,7 @@ isc_result_t find_tsig_key (ns_tsig_key **key, const char *zname, memcpy (tkey -> data, zone -> key -> key.data, zone -> key -> key.len); tkey -> len = zone -> key -> key.len; + *key = tkey; return ISC_R_SUCCESS; }