Finish adding bots to uhub-passwd

Related to https://github.com/janvidar/uhub/pull/28
This commit is contained in:
Kcchouette 2018-10-18 22:10:18 +02:00 committed by Jan Vidar Krey
parent 7970f80114
commit ac96ace7df
1 changed files with 1 additions and 3 deletions

View File

@ -375,7 +375,7 @@ void main_usage(const char* binary)
" 'filename' is a database file\n" " 'filename' is a database file\n"
" 'username' is a nickname (UTF-8, up to %i bytes)\n" " 'username' is a nickname (UTF-8, up to %i bytes)\n"
" 'password' is a password (UTF-8, up to %i bytes)\n" " 'password' is a password (UTF-8, up to %i bytes)\n"
" 'credentials' is one of 'admin', 'super', 'op', 'user'\n" " 'credentials' is one of 'bot', 'ubot', 'opbot', 'opubot', 'admin', 'super', 'op' or 'user'\n"
"\n" "\n"
, binary, MAX_NICK_LEN, MAX_PASS_LEN); , binary, MAX_NICK_LEN, MAX_PASS_LEN);
} }
@ -403,5 +403,3 @@ int main(int argc, char** argv)
main_usage(argv[0]); main_usage(argv[0]);
return 1; return 1;
} }