aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-password-manager.c
diff options
context:
space:
mode:
Diffstat (limited to 'embed/ephy-password-manager.c')
-rw-r--r--embed/ephy-password-manager.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/embed/ephy-password-manager.c b/embed/ephy-password-manager.c
index ef3bb1e2c..a702d713e 100644
--- a/embed/ephy-password-manager.c
+++ b/embed/ephy-password-manager.c
@@ -80,6 +80,10 @@ ephy_password_info_copy (const EphyPasswordInfo *info)
copy->host = g_strdup (info->host);
copy->username = g_strdup (info->username);
copy->password = g_strdup (info->password);
+ copy->httpRealm = g_strdup (info->httpRealm);
+ copy->passwordField = g_strdup (info->passwordField);
+ copy->usernameField = g_strdup (info->usernameField);
+ copy->formSubmitURL = g_strdup (info->formSubmitURL);
return copy;
}