diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-25 12:00:52 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-11-25 12:00:52 +0000 |
commit | 8eac4c6b605fb21361e66b75a2468948d7331f1d (patch) | |
tree | aa94f5e21a317d3ee428fa42e0ded5134ec3bd8c | |
parent | 61637bdbb3a84527d4f93c2ba8792a6efd29ba8f (diff) |
Fixed removal of mesh linking from core
Added cvsignores
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1939 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r-- | .cvsignore | 2 | ||||
-rw-r--r-- | include/.cvsignore | 2 | ||||
-rw-r--r-- | src/.cvsignore | 2 | ||||
-rw-r--r-- | src/connection.cpp | 2 | ||||
-rw-r--r-- | src/modules/.cvsignore | 3 | ||||
-rw-r--r-- | src/modules/extra/.cvsignore | 2 |
6 files changed, 10 insertions, 3 deletions
diff --git a/.cvsignore b/.cvsignore index a3b4a199a..b8716eaed 100644 --- a/.cvsignore +++ b/.cvsignore @@ -3,3 +3,5 @@ Makefile inspircd inspircd.pid inspircd.core +*~ +*.swp diff --git a/include/.cvsignore b/include/.cvsignore index 2fbe61abf..86a5eb197 100644 --- a/include/.cvsignore +++ b/include/.cvsignore @@ -1,2 +1,4 @@ inspircd_config.h modlist.h +*~ +*.swp diff --git a/src/.cvsignore b/src/.cvsignore index 580732fdf..0d0662a82 100644 --- a/src/.cvsignore +++ b/src/.cvsignore @@ -1,3 +1,5 @@ inspircd *.so *.o +*~ +*.swp diff --git a/src/connection.cpp b/src/connection.cpp index d8ebefdf5..f5640e5be 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -317,7 +317,6 @@ bool ircd_connector::MakeOutboundConnection(char* newhost, int newport) if (errno != EINPROGRESS) { WriteOpers("connect() failed for %s",host); - RemoveServer(this->servername.c_str()); return false; } } @@ -330,7 +329,6 @@ bool ircd_connector::MakeOutboundConnection(char* newhost, int newport) else { WriteOpers("socket() failed!"); - RemoveServer(this->servername.c_str()); } return false; diff --git a/src/modules/.cvsignore b/src/modules/.cvsignore index 64018a3ff..47093bf59 100644 --- a/src/modules/.cvsignore +++ b/src/modules/.cvsignore @@ -8,4 +8,5 @@ m_sqloper.cpp m_servicecore.cpp *.so *.o - +*~ +*.swp diff --git a/src/modules/extra/.cvsignore b/src/modules/extra/.cvsignore new file mode 100644 index 000000000..d38c149cc --- /dev/null +++ b/src/modules/extra/.cvsignore @@ -0,0 +1,2 @@ +*.swp +*~ |