diff options
author | sem <sem@FreeBSD.org> | 2009-07-27 18:31:11 +0800 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2009-07-27 18:31:11 +0800 |
commit | e558584a41333277db8ec7fb2389191b77de0c03 (patch) | |
tree | f65499846bc7e333db4fc54913fc54c7f68852f4 /net | |
parent | 36f232fa0556720f1b254831e79da8f45cd0ff2a (diff) | |
download | freebsd-ports-gnome-e558584a41333277db8ec7fb2389191b77de0c03.tar.gz freebsd-ports-gnome-e558584a41333277db8ec7fb2389191b77de0c03.tar.zst freebsd-ports-gnome-e558584a41333277db8ec7fb2389191b77de0c03.zip |
- Patch from GIT repo: fix update-source command
Approved by: maintainer (implicit)
Diffstat (limited to 'net')
-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, |