summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-09-28 10:10:07 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-09-28 10:10:07 -0700
commit9d0ac3796f583629abc0f1a0117d0562489ea7e8 (patch)
treee6e6cc038ed8d2651b2a1965091f44119cc3eb62
parentceeb0f6b9f57d7d0e49f878fd84a6af74464e89a (diff)
parent98a76364b63b374c9eed5cd360f365c37508579d (diff)
downloadtmwa-9d0ac3796f583629abc0f1a0117d0562489ea7e8.tar.gz
tmwa-9d0ac3796f583629abc0f1a0117d0562489ea7e8.tar.bz2
tmwa-9d0ac3796f583629abc0f1a0117d0562489ea7e8.tar.xz
tmwa-9d0ac3796f583629abc0f1a0117d0562489ea7e8.zip
Merge remote-tracking branch 'origin/master' into test
-rw-r--r--src/admin/ladmin.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/admin/ladmin.cpp b/src/admin/ladmin.cpp
index e0860b2..fe4ba01 100644
--- a/src/admin/ladmin.cpp
+++ b/src/admin/ladmin.cpp
@@ -48,7 +48,7 @@ FString ladmin_log_filename = "log/ladmin.log";
// To use these commands you can only type only the first letters.
// You must type a minimum of letters (you can not type 'a',
// because ladmin doesn't know if it's for 'aide' or for 'add')
-// <Example> q <= quit, li <= list, pass <= passwd, etc.
+// <Example> q <= quit, li <= list, pass <= password, etc.
//
// Note: every time you must give a account_name, you can use "" or '' (spaces can be included)
//
@@ -152,7 +152,7 @@ FString ladmin_log_filename = "log/ladmin.log";
// name <account_id>
// Give the name of an account.
//
-// passwd <account_name> <new_password>
+// password <account_name> <new_password>
// Change the password of an account.
// When new password is omitted, the input is done without displaying of the pressed keys.
//
@@ -473,7 +473,7 @@ void display_help(ZString param)
}
else if (command == "password")
{
- PRINTF("passwd <account_name> <new_password>\n");
+ PRINTF("password <account_name> <new_password>\n");
PRINTF(" Change the password of an account.\n");
PRINTF(" When new password is omitted,\n");
PRINTF(" the input is done without displaying of the pressed keys.\n");
@@ -606,7 +606,7 @@ void display_help(ZString param)
PRINTF(" without state and not banished\n");
PRINTF(" memo <account_name> <memo> -- Modify the memo of an account\n");
PRINTF(" name <account_id> -- Give the name of an account\n");
- PRINTF(" passwd <account_name> <new_password> -- Change the password of an account\n");
+ PRINTF(" password <account_name> <new_password> -- Change the password of an account\n");
PRINTF(" quit/end/exit -- End of the program of administation\n");
PRINTF(" reloadGM -- Reload GM configuration file\n");
PRINTF(" search <expression> -- Seek accounts\n");
@@ -1330,7 +1330,7 @@ void changepasswd(ZString param)
if (!qsplit(param, &name, &password))
{
PRINTF("Please input an account name.\n");
- PRINTF("<example> passwd testname newpassword\n");
+ PRINTF("<example> password testname newpassword\n");
LADMIN_LOG("Incomplete parameters to change the password of an account ('password' command).\n");
return;
}