Sorry, I should've remembered that *whaps self*, here's what you'll need then (mostly ripped out of clone_object in db.c):
EXTRA_DESCR_DATA *ed, *ed_new;
for ( ed = pObj->extra_descr; ed != NULL; ed = ed->next )
{
ed_new = new_extra_desc();
ed_new->keyword = str_dup(ed->keyword);
ed_new->description = str_dup(ed->description);
ed_new->next = copyOfpObj->extra_descr;
copyOfpObj->extra_descr = ed_new;
}
Richard Lindsey

