Addition of users_update

Fixed warning in service_alloc

Correct comment in gateway.c
This commit is contained in:
Mark Riddoch
2013-06-24 14:39:34 +02:00
parent 6b0220a468
commit 1d3da6d18f
5 changed files with 22 additions and 2 deletions

View File

@ -56,4 +56,5 @@ extern void users_free(USERS *); /**< Free a users table */
extern int users_add(USERS *, char *, char *); /**< Add a user to the users table */
extern int users_delete(USERS *, char *); /**< Delete a user from the users table */
extern char *users_fetch(USERS *, char *); /**< Fetch the authentication data for a user */
extern int users_update(USERS *, char *, char *); /**< Change the password data for a user in the users table */
#endif