aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2012-06-07 23:40:59 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2012-06-07 23:40:59 +0100
commitaa88e500329f2d9bbdb4915c6d46e7078353a879 (patch)
treec7ab8ee6467f8b45dd6c79f933b34aaf55f9054d
parent15581c17687d50b36045e4a0276943b7d1aef188 (diff)
Make error message on using save without registering/identifying a little
more helpful.
-rw-r--r--root_commands.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/root_commands.c b/root_commands.c
index b46b076d..a46e0225 100644
--- a/root_commands.c
+++ b/root_commands.c
@@ -280,7 +280,7 @@ static void cmd_drop( irc_t *irc, char **cmd )
static void cmd_save( irc_t *irc, char **cmd )
{
if( ( irc->status & USTATUS_IDENTIFIED ) == 0 )
- irc_rootmsg( irc, "Please create an account first" );
+ irc_rootmsg( irc, "Please create an account first (see \x02help register\x02)" );
else if( storage_save( irc, NULL, TRUE ) == STORAGE_OK )
irc_rootmsg( irc, "Configuration saved" );
else