diff options
author | paul <paul> | 2003-08-13 04:54:44 +0200 |
---|---|---|
committer | paul <paul> | 2003-08-13 04:54:44 +0200 |
commit | 42053f4e3a0bb8d4e2df7c9d626629cc14dfc285 (patch) | |
tree | 68e2d21637f3e61b7ab3bf6cf4cebe69063fdaaf /vtysh | |
parent | 2003-08-13 Paul Jakma <paul@dishone.st> (diff) | |
download | frr-42053f4e3a0bb8d4e2df7c9d626629cc14dfc285.tar.xz frr-42053f4e3a0bb8d4e2df7c9d626629cc14dfc285.zip |
2003-08-13 Paul Jakma <paul@dishone.st>
* lib/version.h: Add QUAGGA_PROGNAME
* lib/smux.c: hardcoded zebra/quagga -> QUAGGA_PROGNAME
* lib/command.c: ditto
* vtysh/vtysh_user.c: ditto
Diffstat (limited to 'vtysh')
-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 ecbe0f4c1..8698f8fad 100644 --- a/vtysh/vtysh_user.c +++ b/vtysh/vtysh_user.c @@ -51,7 +51,7 @@ vtysh_pam (char *user) pam_handle_t *pamh = NULL; /* Start PAM. */ - ret = pam_start("zebra", user, &conv, &pamh); + ret = pam_start(QUAGGA_PROGNAME, user, &conv, &pamh); /* printf ("ret %d\n", ret); */ /* Is user really user? */ |