Author: delphij
Date: Mon Oct 31 20:03:09 2011
New Revision: 226970
URL: http://svn.freebsd.org/changeset/base/226970
Log:
  MFC r226887:
  
  Don't expose a constant array into global namespace.
  
  Reported by:  Ruslan Yakovlev <quazi bk ru> via yongari

Modified:
  stable/8/sys/dev/tws/tws_services.c
  stable/8/sys/dev/tws/tws_services.h
Directory Properties:
  stable/8/sys/   (props changed)

Modified: stable/8/sys/dev/tws/tws_services.c
==============================================================================
--- stable/8/sys/dev/tws/tws_services.c Mon Oct 31 20:02:11 2011        
(r226969)
+++ stable/8/sys/dev/tws/tws_services.c Mon Oct 31 20:03:09 2011        
(r226970)
@@ -53,7 +53,7 @@ struct tws_sense *tws_find_sense_from_mf
 
 
 
-struct error_desc array[] = {
+static struct error_desc array[] = {
     { "Cannot add sysctl tree node", 0x2000, ERROR,
        "%s: (0x%02X: 0x%04X): %s:\n", "ERROR" },
     { "Register window not available", 0x2001, ERROR,

Modified: stable/8/sys/dev/tws/tws_services.h
==============================================================================
--- stable/8/sys/dev/tws/tws_services.h Mon Oct 31 20:02:11 2011        
(r226969)
+++ stable/8/sys/dev/tws/tws_services.h Mon Oct 31 20:03:09 2011        
(r226970)
@@ -114,7 +114,6 @@ struct error_desc {
     char *error_str;
 };
 
-extern struct error_desc array[];
 /* ----------- q services ------------- */
 
 #define TWS_FREE_Q        0
_______________________________________________
svn-src-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to