2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 13:38:26 +00:00

avoid unnecessary auto array initialization

This commit is contained in:
Andreas Gustafsson 2001-04-16 17:23:34 +00:00
parent 07c9d1dee5
commit fa1a39a514

View File

@ -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);