diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-10 17:09:24 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2017-05-10 17:16:26 +0200 |
commit | 08c369bda98a28e9bfb148f25749319648f61f1b (patch) | |
tree | 115121974fbd7ccf2c13aaa5184bb9438491bd17 /vtysh | |
parent | Merge pull request #494 from donaldsharp/community.md (diff) | |
download | frr-08c369bda98a28e9bfb148f25749319648f61f1b.tar.xz frr-08c369bda98a28e9bfb148f25749319648f61f1b.zip |
*: Allow configure to control VTYSH_PAGER used
Signed-off-by: Donald Sharp
Diffstat (limited to 'vtysh')
-rw-r--r-- | vtysh/vtysh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh.c b/vtysh/vtysh.c index b029db233..3967cfc93 100644 --- a/vtysh/vtysh.c +++ b/vtysh/vtysh.c @@ -264,7 +264,7 @@ vtysh_pager_init (void) if (pager_defined) vtysh_pager_name = strdup (pager_defined); else - vtysh_pager_name = strdup ("more"); + vtysh_pager_name = strdup (VTYSH_PAGER); } /* Command execution over the vty interface. */ |