Renamed stanza->stream for id callback

This commit is contained in:
James Booth
2015-05-16 22:31:36 +01:00
parent ede3ccab9d
commit 94d1f1e84d
5 changed files with 9 additions and 9 deletions

View File

@@ -19,13 +19,13 @@ prime_get_passwd(void)
}
void
prime_for(char *id, char *stanza)
prime_for(char *id, char *stream)
{
if (!idstubs) {
idstubs = g_hash_table_new_full(g_str_hash, g_str_equal, free, free);
}
g_hash_table_insert(idstubs, strdup(id), strdup(stanza));
g_hash_table_insert(idstubs, strdup(id), strdup(stream));
}
char*