diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-17 11:04:51 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-17 11:04:51 +0100 |
commit | 177ffd7da1570485698f6c105374e86c4471c94a (patch) | |
tree | 428784324a5cdf922a5dcd97ea2ea209ab0c0997 /protocols | |
parent | e43736627ab8fa174352ba6a0122a6dade08a8d7 (diff) |
nick_gen() should also insert an underscore if the first character of a nick
would otherwise be a digit.
Diffstat (limited to 'protocols')
-rw-r--r-- | protocols/purple/purple.c | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/protocols/purple/purple.c b/protocols/purple/purple.c index b8d74ba1..2935609b 100644 --- a/protocols/purple/purple.c +++ b/protocols/purple/purple.c @@ -883,15 +883,20 @@ static void *prplcb_request_action( const char *title, const char *primary, cons return pqad; } +static void prplcb_request_test() +{ + fprintf( stderr, "bla\n" ); +} + static PurpleRequestUiOps bee_request_uiops = { - NULL, - NULL, + prplcb_request_test, + prplcb_request_test, prplcb_request_action, - NULL, - NULL, - NULL, - NULL, + prplcb_request_test, + prplcb_request_test, + prplcb_request_test, + prplcb_request_test, }; static void prplcb_privacy_permit_added( PurpleAccount *account, const char *name ) |