Drop the "static" from the HEXDIGITS declaration, now that there's an

extern definition in sys/systm.h, to allow this to continue to build.
This commit is contained in:
he 2011-09-29 09:18:17 +00:00
parent 216c13827a
commit 5993922d71

View File

@ -1,4 +1,4 @@
/* $NetBSD: etherfun.c,v 1.11 2011/02/25 00:17:35 joerg Exp $ */
/* $NetBSD: etherfun.c,v 1.12 2011/09/29 09:18:17 he Exp $ */
/*
* Copyright (c) 1995 Charles D. Cranor and Seth Widoff
@ -90,7 +90,7 @@ rev_arp(void)
/* Send a tftp read request or acknowledgement
mesgtype 0 is a read request, 1 is an aknowledgement */
static const char HEXDIGITS[16] = "0123456789ABCDEF";
const char HEXDIGITS[16] = "0123456789ABCDEF";
void
do_send_tftp(int mesgtype)