mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
avoid unnecessary auto array initialization
This commit is contained in:
parent
07c9d1dee5
commit
fa1a39a514
1 changed files with 2 additions and 2 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: keycreate.c,v 1.6 2001/03/22 00:07:02 bwelling Exp $ */
|
||||
/* $Id: keycreate.c,v 1.7 2001/04/16 17:23:34 gson Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -136,7 +136,7 @@ sendquery(isc_task_t *task, isc_event_t *event) {
|
|||
unsigned char keydata[9];
|
||||
dns_message_t *query;
|
||||
dns_request_t *request;
|
||||
char keystr[] = "0123456789ab";
|
||||
static char keystr[] = "0123456789ab";
|
||||
|
||||
isc_event_free(&event);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue