diff options
author | paul <paul> | 2004-10-11 13:28:44 +0200 |
---|---|---|
committer | paul <paul> | 2004-10-11 13:28:44 +0200 |
commit | c9eca01b298b83a849a608477f5f5b978a58167e (patch) | |
tree | afd25d986e49e57c73a4d555d4c083ab66d454fa /lib/smux.c | |
parent | 2004-10-11 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-c9eca01b298b83a849a608477f5f5b978a58167e.tar.xz frr-c9eca01b298b83a849a608477f5f5b978a58167e.zip |
2004-10-11 Paul Jakma <paul@dishone.st>
* if.h: mtu's should be unsigned.
* routemap.{c,h}: const char updates
* smux.{c,h}: ditto
Diffstat (limited to 'lib/smux.c')
-rw-r--r-- | lib/smux.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/smux.c b/lib/smux.c index 5831b818a..7e443e3c4 100644 --- a/lib/smux.c +++ b/lib/smux.c @@ -1445,7 +1445,8 @@ config_write_smux (struct vty *vty) /* Register subtree to smux master tree. */ void -smux_register_mib (char *descr, struct variable *var, size_t width, int num, +smux_register_mib (const char *descr, struct variable *var, + size_t width, int num, oid name[], size_t namelen) { struct subtree *tree; |