[BACK]Return to globals.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / sys / lib / libsa

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

Diff for /src/sys/lib/libsa/globals.c between version 1.8.16.1 and 1.8.16.2

version 1.8.16.1, 2012/05/23 10:08:13 version 1.8.16.2, 2014/05/22 11:41:04
Line 8 
Line 8 
  */   */
   
 #include <sys/param.h>  #include <sys/param.h>
   #include <net/if_ether.h>               /* for ETHER_ADDR_LEN */
 #include <netinet/in.h>  #include <netinet/in.h>
 #include <netinet/in_systm.h>  #include <netinet/in_systm.h>
   
 #include "stand.h"  #include "stand.h"
 #include "net.h"  #include "net.h"
   
 u_char  bcea[6] = BA;                   /* broadcast ethernet address */  u_char  bcea[ETHER_ADDR_LEN] = BA;      /* broadcast ethernet address */
   
 char    rootpath[FNAME_SIZE];           /* root mount path */  char    rootpath[FNAME_SIZE];           /* root mount path */
 char    bootfile[FNAME_SIZE];           /* bootp says to boot this */  char    bootfile[FNAME_SIZE];           /* bootp says to boot this */
 char    hostname[FNAME_SIZE];           /* our hostname */  char    hostname[FNAME_SIZE];           /* our hostname */
 char    *fsmod = NULL;                  /*  file system module name to load */  const char      *fsmod = NULL;          /* file system module name to load */
 struct  in_addr myip;                   /* my ip address */  struct  in_addr myip;                   /* my ip address */
 struct  in_addr rootip;                 /* root ip address */  struct  in_addr rootip;                 /* root ip address */
 struct  in_addr gateip;                 /* swap ip address */  struct  in_addr gateip;                 /* swap ip address */

Legend:
Removed from v.1.8.16.1  
changed lines
  Added in v.1.8.16.2

CVSweb <webmaster@jp.NetBSD.org>