diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2012-01-30 21:29:04 +0000 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2012-01-30 21:29:04 +0000 |
commit | 8d96b78e8fac994e4aa030f8696f4871dc6428ca (patch) | |
tree | 1d0754b01eea95cb45ca6b9c060b127770c6de4f | |
parent | e618d85baf87763ffe7cc1f2b800a5845cf8dfe7 (diff) |
Report mysterious unsupported libpurple options in "help purple $PROTOCOL".
Mostly an attempt to explain what's up with #898.
-rw-r--r-- | protocols/purple/purple.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index 3dedd20c..8e100c8c 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -183,6 +183,8 @@ static void purple_init( account_t *acc ) irc_rootmsg( acc->irc, "Setting with unknown type: %s (%d) Expect stuff to break..\n", name, purple_account_option_get_type( o ) ); */ + g_string_append_printf( help, "\n* [%s] UNSUPPORTED (type %d)", + name, purple_account_option_get_type( o ) ); name = NULL; } |