diff options
author | hasso <hasso> | 2004-09-26 16:09:34 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-09-26 16:09:34 +0000 |
commit | 052fe22a25dfb0cbc1a23cba5efdcda98f26a627 (patch) | |
tree | f1ac1aed444088f00d533834ab5993b3f081107c /ospfd/ospf_zebra.c | |
parent | 9c7534d2b2bdd5b4b6f7afa19fe4def45cd930f7 (diff) | |
download | quagga-052fe22a25dfb0cbc1a23cba5efdcda98f26a627.tar.bz2 quagga-052fe22a25dfb0cbc1a23cba5efdcda98f26a627.tar.xz |
Compiler warnings fixes.
Diffstat (limited to 'ospfd/ospf_zebra.c')
-rw-r--r-- | ospfd/ospf_zebra.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_zebra.c b/ospfd/ospf_zebra.c index 5520c089..6a675a59 100644 --- a/ospfd/ospf_zebra.c +++ b/ospfd/ospf_zebra.c @@ -139,7 +139,7 @@ zebra_interface_if_lookup (struct stream *s) stream_get (ifname_tmp, s, INTERFACE_NAMSIZ); /* Lookup this by interface index. */ - ifp = if_lookup_by_name (ifname_tmp); + ifp = if_lookup_by_name ((char *) ifname_tmp); /* If such interface does not exist, indicate an error */ if (!ifp) |