* isis_misc.[ch]: Fix some warnings, making some strings const.

This commit is contained in:
hasso 2005-08-16 20:58:12 +00:00
parent 7d7d0f3848
commit 56b24f4c33
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-08-16 Hasso Tepper <hasso at quagga.net>
* isis_misc.[ch]: Fix some warnings, making some strings const.
2005-08-10 Hasso Tepper <hasso at quagga.net>
* topology/spgrid.c: MAXLONG is deprecated, use LONG_MAX instead.

View File

@ -162,10 +162,10 @@ dotformat2buff (u_char * buff, u_char * dotted)
* conversion of XXXX.XXXX.XXXX to memory
*/
int
sysid2buff (u_char * buff, u_char * dotted)
sysid2buff (u_char * buff, const u_char * dotted)
{
int len = 0;
u_char *pos = dotted;
const u_char *pos = dotted;
u_char number[3];
number[2] = '\0';

View File

@ -35,7 +35,7 @@ struct in_addr newprefix2inaddr (u_char * prefix_start,
* return value of 0 indicates wrong input
*/
int dotformat2buff (u_char *, u_char *);
int sysid2buff (u_char *, u_char *);
int sysid2buff (u_char *, const u_char *);
/*
* Printing functions