aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFranklin Wei <git@fwei.tk>2016-02-16 21:01:46 -0500
committerFranklin Wei <git@fwei.tk>2016-02-16 21:01:46 -0500
commit4a8b6566c19d68489c962104e31e90800b9ff1c3 (patch)
treee3b66859b147facc6e7f5deb77ff8678c506a8c0 /src
parentac4ed2fd68370a049d63df66d57e5961c0a5559d (diff)
downloadnetcosm-4a8b6566c19d68489c962104e31e90800b9ff1c3.zip
netcosm-4a8b6566c19d68489c962104e31e90800b9ff1c3.tar.gz
netcosm-4a8b6566c19d68489c962104e31e90800b9ff1c3.tar.bz2
netcosm-4a8b6566c19d68489c962104e31e90800b9ff1c3.tar.xz
remove some dead code
Diffstat (limited to 'src')
-rw-r--r--src/auth.c5
-rw-r--r--src/auth.h3
2 files changed, 0 insertions, 8 deletions
diff --git a/src/auth.c b/src/auth.c
index d6c72da..069e9fe 100644
--- a/src/auth.c
+++ b/src/auth.c
@@ -224,8 +224,3 @@ struct userdata_t *auth_check(const char *name2, const char *pass2)
sleep(2);
return NULL;
}
-
-void auth_user_list(void)
-{
- /* FIXME: todo */
-}
diff --git a/src/auth.h b/src/auth.h
index 0d5293a..ba24595 100644
--- a/src/auth.h
+++ b/src/auth.h
@@ -42,6 +42,3 @@ struct userdata_t *auth_check(const char *user, const char *pass);
bool auth_user_add(const char *user, const char *pass, int authlevel);
bool auth_user_del(const char *user);
-
-/* lists users through out() */
-void auth_user_list(void);