diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-11 13:21:59 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-07-11 13:21:59 +0100 |
commit | b1f818bcbd50eccd416127ed68346616295f54cd (patch) | |
tree | 39dfc31096d34d5426322571c10783b8739fcc8b /storage_xml.c | |
parent | 133cdffff000275c3968b38e5e4cdde02dc400d3 (diff) |
Use bee_user structs in all nick_* functions. Prepare for a nick_get() with
more flexible nickname generation.
Diffstat (limited to 'storage_xml.c')
-rw-r--r-- | storage_xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage_xml.c b/storage_xml.c index a60769bb..7a10cea7 100644 --- a/storage_xml.c +++ b/storage_xml.c @@ -196,7 +196,7 @@ static void xml_start_element( GMarkupParseContext *ctx, const gchar *element_na if( xd->current_account && handle && nick ) { - nick_set( xd->current_account, handle, nick ); + nick_set_raw( xd->current_account, handle, nick ); } else { |