diff options
Diffstat (limited to 'device-functions.c')
-rw-r--r-- | device-functions.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/device-functions.c b/device-functions.c index 30fac09..d2f8341 100644 --- a/device-functions.c +++ b/device-functions.c @@ -4626,12 +4626,10 @@ int change_password(gchar *old_password, gchar *new_password) { // Skip password check if the supplied old_password is NULL. This // only happens when resetting the password to the default. if (old_password != NULL ) { - printf("verifying old password: %s\n", old_password); //FIXME with real function old_valid = checkpassword(user,old_password); } if (old_valid == TRUE) { - printf("setting new password: %s\n", new_password); //FIXME with real function struct lu_context *ctx; struct lu_error *error = NULL; struct lu_ent *ent; |