diff options
author | Sergey Matveychuk <sem@FreeBSD.org> | 2009-07-27 10:31:11 +0000 |
---|---|---|
committer | Sergey Matveychuk <sem@FreeBSD.org> | 2009-07-27 10:31:11 +0000 |
commit | e44c88b2929ad0681ca88a8da806c3c5bf783c63 (patch) | |
tree | 8eb3025a5dfe4a4a7d81c1ae76d43c81c34b2c17 /net/quagga | |
parent | 47a94a8bc514f4242ec470cf16bfccfb2116e88e (diff) |
- Patch from GIT repo: fix update-source command
Approved by: maintainer (implicit)
Notes
Notes:
svn path=/head/; revision=238434
Diffstat (limited to 'net/quagga')
-rw-r--r-- | net/quagga/Makefile | 1 | ||||
-rw-r--r-- | net/quagga/files/patch-git-1-update-source-fix | 16 |
2 files changed, 17 insertions, 0 deletions
diff --git a/net/quagga/Makefile b/net/quagga/Makefile index b6f9e1848250..6dd0b4c364f2 100644 --- a/net/quagga/Makefile +++ b/net/quagga/Makefile @@ -7,6 +7,7 @@ PORTNAME= quagga PORTVERSION= 0.99.14 +PORTREVISION= 1 CATEGORIES= net ipv6 MASTER_SITES= http://quagga.net/download/ \ http://www.ru.quagga.net/download/ \ diff --git a/net/quagga/files/patch-git-1-update-source-fix b/net/quagga/files/patch-git-1-update-source-fix new file mode 100644 index 000000000000..c23ca394eec3 --- /dev/null +++ b/net/quagga/files/patch-git-1-update-source-fix @@ -0,0 +1,16 @@ +diff -Nur bgpd/bgp_vty.c quagga-0.99.14/bgpd/bgp_vty.c +--- bgpd/bgp_vty.c 2009-07-21 12:45:17 +0400 ++++ bgpd/bgp_vty.c 2009-07-24 21:22:48 +0400 +@@ -2820,10 +2820,10 @@ + return CMD_SUCCESS; + } + +-#define BGP_UPDATE_SOURCE_STR "(A.B.C.D|X:X::X:X)" ++#define BGP_UPDATE_SOURCE_STR "(A.B.C.D|WORD)" + #define BGP_UPDATE_SOURCE_HELP_STR \ + "IPv4 address\n" \ +- "IPv6 address\n" ++ "Interface name\n" + + DEFUN (neighbor_update_source, + neighbor_update_source_cmd, |