summaryrefslogtreecommitdiff
path: root/isisd/isis_misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'isisd/isis_misc.c')
-rw-r--r--isisd/isis_misc.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/isisd/isis_misc.c b/isisd/isis_misc.c
index 53a2a85d..300f02cb 100644
--- a/isisd/isis_misc.c
+++ b/isisd/isis_misc.c
@@ -64,7 +64,7 @@ char nlpidstring[30];
/*
* This converts the isonet to its printable format
*/
-char *
+const char *
isonet_print (u_char * from, int len)
{
int i = 0;
@@ -335,7 +335,7 @@ syst2string (int type)
/*
* Print functions - we print to static vars
*/
-char *
+const char *
snpa_print (u_char * from)
{
int i = 0;
@@ -367,7 +367,7 @@ snpa_print (u_char * from)
return snpa;
}
-char *
+const char *
sysid_print (u_char * from)
{
int i = 0;
@@ -399,7 +399,7 @@ sysid_print (u_char * from)
return sysid;
}
-char *
+const char *
rawlspid_print (u_char * from)
{
char *pos = lspid;
@@ -417,7 +417,7 @@ rawlspid_print (u_char * from)
return lspid;
}
-char *
+const char *
time2string (u_int32_t time)
{
char *pos = datestring;