This commit is contained in:
Michael Kerrisk 2007-12-23 08:23:31 +00:00
parent 62218dc0fd
commit 23adf52557
1 changed files with 4 additions and 4 deletions

View File

@ -44,15 +44,15 @@ struct ifreq {
struct ifmap ifr_map;
char ifr_slave[IFNAMSIZ];
char ifr_newname[IFNAMSIZ];
char * ifr_data;
char *ifr_data;
};
};
struct ifconf {
int ifc_len; /* size of buffer */
int ifc_len; /* size of buffer */
union {
char * ifc_buf; /* buffer address */
struct ifreq * ifc_req; /* array of structures */
char *ifc_buf; /* buffer address */
struct ifreq *ifc_req; /* array of structures */
};
};
.fi