]> Cypherpunks.ru repositories - govpn.git/blobdiff - src/cypherpunks.ru/govpn/client/proxy.go
Merge branch 'develop'
[govpn.git] / src / cypherpunks.ru / govpn / client / proxy.go
index be7d1149fa3e4d44e257a195fe92151c11e8ec8d..843381e5607f058465d15219f1597ab5c88cf600 100644 (file)
@@ -1,6 +1,6 @@
 /*
 GoVPN -- simple secure free software virtual private network daemon
-Copyright (C) 2014-2017 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2014-2018 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -55,6 +55,6 @@ func (c *Client) proxyTCP() {
                c.Error <- fmt.Errorf("Unexpected response from proxy: %s", err.Error())
                return
        }
-       govpn.Printf(`[proxy-connected remote="%s" addr="%s"]`, c.config.RemoteAddress, *proxyAddr)
+       govpn.Printf(`[proxy-connected remote="%s" addr="%s"]`, c.config.RemoteAddress, (*proxyAddr).String())
        go c.handleTCP(conn)
 }