mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-26 15:48:09 +00:00
setupwizard.c: fix typo
This commit is contained in:
parent
dcdbf8834a
commit
cde913c79c
1 changed files with 1 additions and 1 deletions
|
|
@ -309,7 +309,7 @@ void linphone_gtk_account_creation_password_changed(GtkEntry *entry) {
|
|||
} else {
|
||||
if (gtk_entry_get_text_length(password) < PASSWORD_MIN_SIZE) {
|
||||
gtk_label_set_text(passwordError, "Password is too short !");
|
||||
} else if (!g_ascii_strcasecmp(gtk_entry_get_text(password), gtk_entry_get_text(password_confirm)) == 0) {
|
||||
} else if (g_ascii_strcasecmp(gtk_entry_get_text(password), gtk_entry_get_text(password_confirm)) != 0) {
|
||||
gtk_label_set_text(passwordError, "Passwords don't match !");
|
||||
}
|
||||
g_object_set_data(G_OBJECT(page), "is_password_correct", GINT_TO_POINTER(0));
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue