From 5993922d717f1fd012ade8bdea36896f10f96656 Mon Sep 17 00:00:00 2001 From: he Date: Thu, 29 Sep 2011 09:18:17 +0000 Subject: [PATCH] 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. --- sys/arch/mvme68k/stand/sboot/etherfun.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sys/arch/mvme68k/stand/sboot/etherfun.c b/sys/arch/mvme68k/stand/sboot/etherfun.c index 7bf22435d945..67d8e944b102 100644 --- a/sys/arch/mvme68k/stand/sboot/etherfun.c +++ b/sys/arch/mvme68k/stand/sboot/etherfun.c @@ -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)