diff options
author | Christian Pointner <equinox@helsinki.at> | 2015-12-19 02:03:49 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2015-12-19 02:03:49 (GMT) |
commit | d4e8c888f9148d1e5ac39ef4cb6aa9203437d1db (patch) | |
tree | da8a9a554aab7436ca1b37564366766acb89e2e6 /src/helsinki.at/rhimportd | |
parent | e4eaa2082ac00a8a44e4867fcc0c98e538e7f5b4 (diff) |
telnets default is 23 not 21 so use 4023 as the default...
Diffstat (limited to 'src/helsinki.at/rhimportd')
-rw-r--r-- | src/helsinki.at/rhimportd/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/helsinki.at/rhimportd/main.go b/src/helsinki.at/rhimportd/main.go index b38129a..b6ac68b 100644 --- a/src/helsinki.at/rhimportd/main.go +++ b/src/helsinki.at/rhimportd/main.go @@ -43,7 +43,7 @@ var ( func main() { web_addr_s := flag.String("web-addr", ":4080", "addr:port to listen on") - telnet_addr_s := flag.String("telnet-addr", ":4021", "addr:port to listen on") + telnet_addr_s := flag.String("telnet-addr", ":4023", "addr:port to listen on") rdconf_s := flag.String("rdconf", "/etc/rd.conf", "path to the Rivendell config file") rdxport_url_s := flag.String("rdxport-url", "http://localhost/rd-bin/rdxport.cgi", "the url to the Rivendell web-api") temp_dir_s := flag.String("tmp-dir", os.TempDir(), "path to temporary files") |