diff options
| -rw-r--r-- | main.c | 6 |
1 files changed, 0 insertions, 6 deletions
@@ -34,7 +34,6 @@ int usage(const char *cmd) "httpd {basedir} Starts the HTTPD daemon\n" "purge {basedir} Purges old data\n" "state {basedir} Prints server state\n" - "fsck {basedir} Performs a non-destructive data integrity check\n" "webfinger {basedir} {account} Queries about an account (@user@host or actor url)\n" "queue {basedir} {uid} Processes a user queue\n" "follow {basedir} {uid} {actor} Follows an actor\n" @@ -201,11 +200,6 @@ int main(int argc, char *argv[]) return 0; } - if (strcmp(cmd, "fsck") == 0) { /** **/ - data_fsck(); - return 0; - } - if ((user = GET_ARGV()) == NULL) return usage(cmd); |