diff options
| author | 2005-11-29 08:51:35 +0000 | |
|---|---|---|
| committer | 2005-11-29 08:51:35 +0000 | |
| commit | 011835fd02e576d4f04cabedb99b4c1cc40934eb (patch) | |
| tree | 11db2a2559f2b96b2ceea024c33ab0488031166c /src/commands.cpp | |
| parent | strcmp() is a little expensive, and useless here -- ointers make our lives ea... (diff) | |
Reverted is_uline change
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1987 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands.cpp')
| -rw-r--r-- | src/commands.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands.cpp b/src/commands.cpp index a6cbd1cc8..1b7c03ea3 100644 --- a/src/commands.cpp +++ b/src/commands.cpp @@ -1511,7 +1511,7 @@ bool is_uline(const char* server) /* fix, by w00t - per nenolod. I don't see how we can want '""' as a uline. */ if (!server || !(*server)) - return false; + return true; for (int i = 0; i < ConfValueEnum("uline",&config_f); i++) { |
