summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:10 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-09-30 18:45:10 +0000
commit431918ceacfd5a580d4f28a8ae6077c9bbc44b99 (patch)
tree27dcb4182ee1041f9160df28e3266165412285ae /src/main.c
parent2fd6bf39b1b018a7081fafd8350ea88f1b733ea5 (diff)
listnicks and listchans go away, as they aren't all that useful (and way too old.)
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1201 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c25
1 files changed, 0 insertions, 25 deletions
diff --git a/src/main.c b/src/main.c
index 7195d06ce..3981a7a55 100644
--- a/src/main.c
+++ b/src/main.c
@@ -553,31 +553,6 @@ int main(int ac, char **av, char **envp)
else
progname = av[0];
-#ifdef _WIN32
- if (strcmp(progname, "listnicks.exe") == 0)
-#else
- if (strcmp(progname, "listnicks") == 0)
-#endif
- {
- do_listnicks(ac, av);
- modules_unload_all(1, 0);
- modules_unload_all(1, 1);
- ModuleRunTimeDirCleanUp();
- return 0;
- }
-#ifdef _WIN32
- else if (strcmp(progname, "listchans.exe") == 0)
-#else
- else if (strcmp(progname, "listchans") == 0)
-#endif
- {
- do_listchans(ac, av);
- modules_unload_all(1, 0);
- modules_unload_all(1, 1);
- ModuleRunTimeDirCleanUp();
- return 0;
- }
-
/* Initialization stuff. */
if ((i = init_secondary(ac, av)) != 0)
return i;