mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-08-05 20:07:46 +00:00
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
This commit is contained in:
parent
73aafda016
commit
42053f4e3a
@ -39,7 +39,7 @@ struct host host;
|
||||
/* Default motd string. */
|
||||
char *default_motd =
|
||||
"\r\n\
|
||||
Hello, this is quagga (version " QUAGGA_VERSION ").\r\n\
|
||||
Hello, this is " QUAGGA_PROGNAME " (version " QUAGGA_VERSION ").\r\n\
|
||||
Copyright 1996-2002 Kunihiro Ishiguro.\r\n\
|
||||
\r\n";
|
||||
|
||||
|
@ -952,7 +952,7 @@ smux_open (int sock)
|
||||
u_char *ptr;
|
||||
int len;
|
||||
u_long version;
|
||||
u_char progname[] = "quagga-" QUAGGA_VERSION;
|
||||
u_char progname[] = QUAGGA_PROGNAME "-" QUAGGA_VERSION;
|
||||
|
||||
if (debug_smux)
|
||||
{
|
||||
|
@ -22,6 +22,8 @@
|
||||
#ifndef _ZEBRA_VERSION_H
|
||||
#define _ZEBRA_VERSION_H
|
||||
|
||||
#define QUAGGA_PROGNAME "quagga"
|
||||
|
||||
#define QUAGGA_VERSION "0.96"
|
||||
|
||||
#define ZEBRA_BUG_ADDRESS "bug-zebra@gnu.org"
|
||||
|
@ -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? */
|
||||
|
Loading…
Reference in New Issue
Block a user