+2004-10-07 Hasso Tepper <hasso at quagga.net>
+
+ * vtysh.c, vtysh.h, vtysh_config.c, vtysh_main.c: Fix compiler
+ warnings: make strings const, signed -> unsigned, remove unused
+ variables.
+ * vtysh_config.c: Fix crash introduced with previous patch.
+
2004-10-03 Hasso Tepper <hasso at quagga.net>
* vtsyh_main.c: Enter into enable node by default. Disable node doesn't
}
int
-vtysh_client_execute (struct vtysh_client *vclient, char *line, FILE *fp)
+vtysh_client_execute (struct vtysh_client *vclient, const char *line, FILE *fp)
{
int ret;
char buf[1001];
/* Command execution over the vty interface. */
void
-vtysh_execute_func (char *line, int pager)
+vtysh_execute_func (const char *line, int pager)
{
int ret, cmd_stat;
vector vline;
}
void
-vtysh_execute_no_pager (char *line)
+vtysh_execute_no_pager (const char *line)
{
vtysh_execute_func (line, 0);
}
void
-vtysh_execute (char *line)
+vtysh_execute (const char *line)
{
vtysh_execute_func (line, 1);
}
vtysh_rl_describe ()
{
int ret;
- int i;
+ unsigned int i;
vector vline;
vector describe;
int width;
{
int ret = CMD_SUCCESS;
char line[] = "write memory\n";
- char *vtysh_conf;
- extern struct host host;
- FILE *fp;
/* If integrated Quagga.conf explicitely set. */
if (vtysh_writeconfig_integrated)
/* Execute command in child process. */
int
-execute_command (char *command, int argc, char *arg1, char *arg2)
+execute_command (const char *command, int argc, char *arg1, char *arg2)
{
int ret;
pid_t pid;
/* Making connection to protocol daemon. */
int
-vtysh_connect (struct vtysh_client *vclient, char *path)
+vtysh_connect (struct vtysh_client *vclient, const char *path)
{
int ret;
int sock, len;
void vtysh_readline_init ();
void vtysh_user_init ();
-void vtysh_execute (char *);
-void vtysh_execute_no_pager (char *);
+void vtysh_execute (const char *);
+void vtysh_execute_no_pager (const char *);
char *vtysh_prompt ();
}
struct config *
-config_get (int index, char *line)
+config_get (int index, const char *line)
{
struct config *config;
struct config *config_loop;
}
void
-config_add_line (struct list *config, char *line)
+config_add_line (struct list *config, const char *line)
{
listnode_add (config, XSTRDUP (MTYPE_VTYSH_CONFIG_LINE, line));
}
void
-config_add_line_uniq (struct list *config, char *line)
+config_add_line_uniq (struct list *config, const char *line)
{
struct listnode *nn;
char *pnt;
}
void
-vtysh_config_parse_line (char *line)
+vtysh_config_parse_line (const char *line)
{
char c;
static struct config *config = NULL;
struct config *config;
struct list *master;
char *line;
- int i;
+ unsigned int i;
LIST_LOOP (config_top, line, nn)
{
void
vtysh_config_write ()
{
- char *line;
+ char line[81];
extern struct host host;
if (host.name)
int eval_flag = 0;
int boot_flag = 0;
char *eval_line = NULL;
- char *integrated_file = NULL;
/* Preserve name of myself. */
progname = ((p = strrchr (argv[0], '/')) ? ++p : argv[0]);