summaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-10-12 15:06:30 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-11-01 21:56:21 +0900
commitfbc493411b3656c97cc979d086e5eecb942859c1 (patch)
tree29c8a123485091d1bb5342da0cb2d0817eb67653 /tools
parent3f022e8075153a637e96ba80ee2ca537ebe6004a (diff)
Fix some spelling for spell checker's test
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/route-server/quagga-rsconfig.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/route-server/quagga-rsconfig.go b/tools/route-server/quagga-rsconfig.go
index dfd086e7..80b9a9d0 100644
--- a/tools/route-server/quagga-rsconfig.go
+++ b/tools/route-server/quagga-rsconfig.go
@@ -56,7 +56,7 @@ func create_config_files(nr int, outputDir string) {
c := config.Neighbor{}
c.Config.PeerAs = 65000 + uint32(i)
c.Config.NeighborAddress = fmt.Sprintf("10.0.0.%d", i)
- c.Config.AuthPassword = fmt.Sprintf("hoge%d", i)
+ c.Config.AuthPassword = fmt.Sprintf("password%d", i)
gobgpConf.Neighbors = append(gobgpConf.Neighbors, c)
q := NewQuaggaConfig(i, &gobgpConf.Global, &c, net.ParseIP("10.0.255.1"))