about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-25 23:18:10 +0000
committerJames Booth <boothj5@gmail.com>2014-01-25 23:18:10 +0000
commitfbdecdad0cf27187c46c8c930a3cfd02be47f7ff (patch)
treeabea835fa6bfd611b46d535f8c4030b89092b591 /src/xmpp
parente1aca3b1f6ff9cd6196bef280b29abe2dc8ef639 (diff)
downloadprofani-tty-fbdecdad0cf27187c46c8c930a3cfd02be47f7ff.tar.gz
generate_unique_id allows prefix
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/roster.c4
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) {