Number of warnings is down to 3 again in lib directory. A lot of const's
added to strings and a lot of int -> unsigned int changes.
diff --git a/lib/privs.h b/lib/privs.h
index 65c9f35..76e8af2 100644
--- a/lib/privs.h
+++ b/lib/privs.h
@@ -61,9 +61,9 @@
zebra_capabilities_t *caps_i; /* caps to allow inheritance of */
int cap_num_p; /* number of caps in arrays */
int cap_num_i;
- char *user; /* user and group to run as */
- char *group;
- char *vty_group; /* group to chown vty socket to */
+ const char *user; /* user and group to run as */
+ const char *group;
+ const char *vty_group; /* group to chown vty socket to */
/* methods */
int
(*change) (zebra_privs_ops_t); /* change privileges, 0 on success */