Remove a wrong "const" qualifier.

Spotted by:	WARNS=6
This commit is contained in:
Yaroslav Tykhiy 2006-11-27 16:59:08 +00:00
parent 968ed7eedb
commit 2506efa78c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=164677

View File

@ -78,7 +78,7 @@ struct if_stat {
extern u_int curscale;
static void right_align_string(const struct if_stat *);
static void right_align_string(struct if_stat *);
static void getifmibdata(const int, struct ifmibdata *);
static void sort_interface_list(void);
static u_int getifnum(void);
@ -306,7 +306,7 @@ fetchifstat(void)
* (first sixteen or so characters), so we need to do some alignment.
*/
static void
right_align_string(const struct if_stat *ifp)
right_align_string(struct if_stat *ifp)
{
int str_len = 0, pad_len = 0;
char *newstr = NULL, *ptr = NULL;
@ -318,7 +318,7 @@ right_align_string(const struct if_stat *ifp)
str_len = strlen(ifp->if_mib.ifmd_name)+1;
pad_len = IF_NAMESIZE-(str_len);
newstr = (char *)ifp->if_name;
newstr = ifp->if_name;
ptr = newstr + pad_len;
(void)memset((void *)newstr, (int)' ', IF_NAMESIZE);
(void)strncpy(ptr, (const char *)&ifp->if_mib.ifmd_name,