Renamed generate_unique_id -> create_unique_id

This commit is contained in:
James Booth
2014-06-15 21:49:34 +01:00
parent efc833a202
commit 1c62d7fda8
6 changed files with 16 additions and 16 deletions

View File

@@ -401,7 +401,7 @@ _send_bookmarks(void)
xmpp_stanza_t *iq = xmpp_stanza_new(ctx);
xmpp_stanza_set_name(iq, STANZA_NAME_IQ);
char *id = generate_unique_id("bookmarks_update");
char *id = create_unique_id("bookmarks_update");
xmpp_stanza_set_id(iq, id);
free(id);
xmpp_stanza_set_type(iq, STANZA_TYPE_SET);