diff options
author | hasso <hasso> | 2004-10-11 13:20:40 +0000 |
---|---|---|
committer | hasso <hasso> | 2004-10-11 13:20:40 +0000 |
commit | b70830db636d51d7f16a8d1b44f9ffaab40a7c53 (patch) | |
tree | f4a9b54324ea87fc37676f98b499557ae941bcad /vtysh/vtysh_user.c | |
parent | ca862f895b2b5da9b578a122533dd767ab74c5ef (diff) | |
download | quagga-b70830db636d51d7f16a8d1b44f9ffaab40a7c53.tar.bz2 quagga-b70830db636d51d7f16a8d1b44f9ffaab40a7c53.tar.xz |
Fix warnings here.
Diffstat (limited to 'vtysh/vtysh_user.c')
-rw-r--r-- | vtysh/vtysh_user.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/vtysh/vtysh_user.c b/vtysh/vtysh_user.c index 92330103..f84cca83 100644 --- a/vtysh/vtysh_user.c +++ b/vtysh/vtysh_user.c @@ -46,7 +46,7 @@ static struct pam_conv conv = }; int -vtysh_pam (char *user) +vtysh_pam (const char *user) { int ret; pam_handle_t *pamh = NULL; @@ -114,7 +114,7 @@ user_free (struct user *user) } struct user * -user_lookup (char *name) +user_lookup (const char *name) { struct listnode *nn; struct user *user; @@ -141,7 +141,7 @@ user_config_write () } struct user * -user_get (char *name) +user_get (const char *name) { struct user *user; user = user_lookup (name); |