xmldb_init -> xmldb_create

This commit is contained in:
Olof hagsand 2017-05-02 22:29:56 +02:00
parent a2c2375b38
commit 4bcb966dac
7 changed files with 288 additions and 33 deletions

View file

@ -652,15 +652,15 @@ xmldb_delete(clicon_handle h,
return retval;
}
/*! Initialize database. Open database for writing.
/*! Create a database. Open database for writing.
* @param[in] h Clicon handle
* @param[in] db Database
* @retval 0 OK
* @retval -1 Error
*/
int
xmldb_init(clicon_handle h,
char *db)
xmldb_create(clicon_handle h,
char *db)
{
int retval = -1;
xmldb_handle xh;