summaryrefslogtreecommitdiffstats
path: root/vtysh
diff options
context:
space:
mode:
authorMartín Beauchamp <martinb@shapeways.com>2017-02-27 19:26:20 +0100
committerMartín Beauchamp <martinb@shapeways.com>2017-02-27 19:26:20 +0100
commite20dc2ba0619cf17474810592d98a6cc9c41cc54 (patch)
tree8eb89100c911a1d5dbca85fbd141401d93146bfe /vtysh
parentMerge pull request #219 from opensourcerouting/feature/isis-draft-ietf-rtgwg-... (diff)
downloadfrr-e20dc2ba0619cf17474810592d98a6cc9c41cc54.tar.xz
frr-e20dc2ba0619cf17474810592d98a6cc9c41cc54.zip
Lowercase frr.conf
Diffstat (limited to 'vtysh')
-rw-r--r--vtysh/vtysh.c2
-rw-r--r--vtysh/vtysh.h2
-rw-r--r--vtysh/vtysh_main.c4
3 files changed, 4 insertions, 4 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c
index c2e3bbbca..38f28e453 100644
--- a/vtysh/vtysh.c
+++ b/vtysh/vtysh.c
@@ -2573,7 +2573,7 @@ DEFUN (vtysh_write_memory,
fprintf (stdout, "Note: this version of vtysh never writes vtysh.conf\n");
- /* If integrated Frr.conf explicitely set. */
+ /* If integrated frr.conf explicitely set. */
if (want_config_integrated())
{
ret = CMD_WARNING;
diff --git a/vtysh/vtysh.h b/vtysh/vtysh.h
index 39bf64f30..ad31195ac 100644
--- a/vtysh/vtysh.h
+++ b/vtysh/vtysh.h
@@ -49,7 +49,7 @@ DECLARE_MGROUP(MVTYSH)
/* vtysh local configuration file. */
#define VTYSH_DEFAULT_CONFIG "vtysh.conf"
-#define FRR_DEFAULT_CONFIG "Frr.conf"
+#define FRR_DEFAULT_CONFIG "frr.conf"
enum vtysh_write_integrated {
WRITE_INTEGRATED_UNSPECIFIED,
diff --git a/vtysh/vtysh_main.c b/vtysh/vtysh_main.c
index 561eda045..a24571a2b 100644
--- a/vtysh/vtysh_main.c
+++ b/vtysh/vtysh_main.c
@@ -151,7 +151,7 @@ usage (int status)
"-m, --markfile Mark input file with context end\n" \
" --vty_socket Override vty socket path\n" \
" --config_dir Override config directory path\n" \
- "-w, --writeconfig Write integrated config (Frr.conf) and exit\n" \
+ "-w, --writeconfig Write integrated config (frr.conf) and exit\n" \
"-h, --help Display this help and exit\n\n" \
"Note that multiple commands may be executed from the command\n" \
"line by passing multiple -c args, or by embedding linefeed\n" \
@@ -355,7 +355,7 @@ main (int argc, char **argv, char **env)
strlcat(vtysh_config_always, vtysh_configfile_name,
sizeof(vtysh_config_always));
/*
- * Overwrite location for Frr.conf
+ * Overwrite location for frr.conf
*/
vtysh_configfile_name = strrchr(FRR_DEFAULT_CONFIG, '/');
if (vtysh_configfile_name)