diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-27 01:56:47 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-05-27 02:00:42 +0200 |
commit | ec4ab9f32d48b2d51ba4b5c0a6c0205f2df8fd31 (patch) | |
tree | 815d8415fa3c1f3690925abcad2bb0b0d94d219d /vtysh/vtysh_user.c | |
parent | pimd: Double read of stream (diff) | |
download | frr-ec4ab9f32d48b2d51ba4b5c0a6c0205f2df8fd31.tar.xz frr-ec4ab9f32d48b2d51ba4b5c0a6c0205f2df8fd31.zip |
vtysh: Fix compile failure from cherry-pick
Fix a compile failure from a cherry-pick of a
commit from upstream
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | vtysh/vtysh_user.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vtysh/vtysh_user.c b/vtysh/vtysh_user.c index 098e10ce4..551aac1bf 100644 --- a/vtysh/vtysh_user.c +++ b/vtysh/vtysh_user.c @@ -44,7 +44,7 @@ * The DEFUNSH and DEFUN macro's are messing with the * compiler I believe. This is just to make it happy. */ -int vtysh_pam(const char *); +static int vtysh_pam(const char *); struct vtysh_user *user_new(void); void user_free(struct vtysh_user *); struct vtysh_user *user_lookup(const char *); |