Skip to content
Snippets Groups Projects
Commit 81a8b3e2 authored by deuce's avatar deuce
Browse files

Change default host to bugs.synchro.net

parent b174ec65
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@ function GNATS(host,user,pass,email)
{
// Properties
if(host == undefined)
this.host='gnats.bbsdev.net';
this.host='bugs.synchro.net';
else
this.host=host;
if(user == undefined)
......
......@@ -59,7 +59,7 @@ if(argc>0)
user=argv[0];
if(argc>1)
password=argv[1];
var gnats = new GNATS("gnats.bbsdev.net",user,password);
var gnats = new GNATS("bugs.synchro.net",user,password);
if(!gnats.connect())
handle_error();
......
......@@ -11,7 +11,7 @@ console.clear();
console.center(format("Synchronet Bug Submission Module %s\r\n", REVISION));
console.crlf();
gnats=new GNATS("gnats.bbsdev.net","guest");
gnats=new GNATS("bugs.synchro.net","guest");
if(!gnats.connect()) {
writeln(gnats.error);
exit();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment