Module Name:    src
Committed By:   he
Date:           Thu Sep 29 09:18:17 UTC 2011

Modified Files:
        src/sys/arch/mvme68k/stand/sboot: etherfun.c

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.11 -r1.12 src/sys/arch/mvme68k/stand/sboot/etherfun.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/mvme68k/stand/sboot/etherfun.c
diff -u src/sys/arch/mvme68k/stand/sboot/etherfun.c:1.11 src/sys/arch/mvme68k/stand/sboot/etherfun.c:1.12
--- src/sys/arch/mvme68k/stand/sboot/etherfun.c:1.11	Fri Feb 25 00:17:35 2011
+++ src/sys/arch/mvme68k/stand/sboot/etherfun.c	Thu Sep 29 09:18:17 2011
@@ -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) 

Reply via email to