Skip to content

Commit 74cabd7

Browse files
committed
ipn/proxies: m fix args for TestHop
1 parent 21bcf44 commit 74cabd7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

intra/ipn/proxies.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ func (px *proxifier) GetProxy(id string) (x.Proxy, error) {
676676
// TestHop implements Proxies.
677677
func (px *proxifier) TestHop(via, origin string) string {
678678
defer core.Recover(core.Exit11, "pxr.TestHop."+via+">>"+origin)
679-
if err := px.hop(origin, via, true /*dryrun*/); err != nil {
679+
if err := px.hop(via, origin, true /*dryrun*/); err != nil {
680680
return err.Error()
681681
}
682682
return "" // all ok

0 commit comments

Comments
 (0)