--- a/src/conversation.c Thu Jan 24 21:43:09 2002 +0000 +++ b/src/conversation.c Fri Jan 25 04:49:39 2002 +0000 @@ -134,6 +134,14 @@ return; } +void set_convo_name(struct conversation *c, const char *nname) +{ + + g_snprintf(c->name, sizeof(c->name), "%s", nname); + + return; +} + struct conversation *new_conversation(char *name) { struct conversation *c;