mirror of
https://git.proxmox.com/git/mirror_frr
synced 2025-07-27 11:19:13 +00:00
Merge pull request #438 from hwchiu/fix_nhrpd_privs
Fix the error when execute nhrpd
This commit is contained in:
commit
8f5f5e1ad3
@ -44,11 +44,9 @@ static zebra_capabilities_t _caps_p [] = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static struct zebra_privs_t nhrpd_privs = {
|
static struct zebra_privs_t nhrpd_privs = {
|
||||||
#ifdef QUAGGA_USER
|
#if defined(FRR_USER) && defined(FRR_GROUP)
|
||||||
.user = QUAGGA_USER,
|
.user = FRR_USER,
|
||||||
#endif
|
.group = FRR_GROUP,
|
||||||
#ifdef QUAGGA_GROUP
|
|
||||||
.group = QUAGGA_GROUP,
|
|
||||||
#endif
|
#endif
|
||||||
#ifdef VTY_GROUP
|
#ifdef VTY_GROUP
|
||||||
.vty_group = VTY_GROUP,
|
.vty_group = VTY_GROUP,
|
||||||
|
Loading…
Reference in New Issue
Block a user