diff options
author | James Booth <boothj5@gmail.com> | 2014-01-25 23:18:10 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-25 23:18:10 +0000 |
commit | fbdecdad0cf27187c46c8c930a3cfd02be47f7ff (patch) | |
tree | abea835fa6bfd611b46d535f8c4030b89092b591 /src/xmpp | |
parent | e1aca3b1f6ff9cd6196bef280b29abe2dc8ef639 (diff) | |
download | profani-tty-fbdecdad0cf27187c46c8c930a3cfd02be47f7ff.tar.gz |
generate_unique_id allows prefix
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/roster.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/roster.c b/src/xmpp/roster.c index 542da2d0..cf42acac 100644 --- a/src/xmpp/roster.c +++ b/src/xmpp/roster.c @@ -126,7 +126,7 @@ _roster_send_add_to_group(const char * const group, PContact contact) new_groups = g_slist_append(new_groups, strdup(group)); // add an id handler to handle the response - char *unique_id = get_unique_id(); + char *unique_id = generate_unique_id(NULL); GroupData *data = malloc(sizeof(GroupData)); data->group = strdup(group); if (p_contact_name(contact) != NULL) { @@ -175,7 +175,7 @@ _roster_send_remove_from_group(const char * const group, PContact contact) xmpp_ctx_t * const ctx = connection_get_ctx(); // add an id handler to handle the response - char *unique_id = get_unique_id(); + char *unique_id = generate_unique_id(NULL); GroupData *data = malloc(sizeof(GroupData)); data->group = strdup(group); if (p_contact_name(contact) != NULL) { |