aboutsummaryrefslogtreecommitdiffstats
path: root/embed/ephy-password-manager.c
diff options
context:
space:
mode:
authorChristian Persch <chpe@src.gnome.org>2008-03-11 05:57:45 +0800
committerChristian Persch <chpe@src.gnome.org>2008-03-11 05:57:45 +0800
commit7720c783b8a8f8911a79b965d9176aba839829e6 (patch)
tree7163a9238c97b44b40b0c455e7c7ebc70c08fa79 /embed/ephy-password-manager.c
parent888c589bd3ee139571fccf55d2b4bdfee27c2c7f (diff)
downloadgsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar
gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.gz
gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.bz2
gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.lz
gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.xz
gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.tar.zst
gsoc2013-epiphany-7720c783b8a8f8911a79b965d9176aba839829e6.zip
Allow building with xulrunner 1.9. Patch by Alexander Sack; part of bug #503657
svn path=/trunk/; revision=8094
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;
}