[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
gramps
gramps at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 08:38:39 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 2aec206522aa296e8ae0cd8392d2c04c1e67a36d
Author: gramps <gramps at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Sat May 8 02:38:58 2004 +0000
Reviewed by Dave.
Fixed minor, edge-case regression in KEYGEN RSA logic caused by Dave's
"atomic string" patch back in January.
* khtml/html/html_formimpl.cpp:
(HTMLKeygenElementImpl::encoding):
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@6561 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 88f863c..031fe05 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,3 +1,13 @@
+2004-05-07 Don Melton <gramps at apple.com>
+
+ Reviewed by Dave.
+
+ Fixed minor, edge-case regression in KEYGEN RSA logic caused by Dave's
+ "atomic string" patch back in January.
+
+ * khtml/html/html_formimpl.cpp:
+ (HTMLKeygenElementImpl::encoding):
+
=== Safari-139 ===
2004-05-06 Maciej Stachowiak <mjs at apple.com>
diff --git a/WebCore/khtml/html/html_formimpl.cpp b/WebCore/khtml/html/html_formimpl.cpp
index 45c95d5..e499fb4 100644
--- a/WebCore/khtml/html/html_formimpl.cpp
+++ b/WebCore/khtml/html/html_formimpl.cpp
@@ -2506,7 +2506,7 @@ bool HTMLKeygenElementImpl::encoding(const QTextCodec* codec, khtml::encodingLis
#if APPLE_CHANGES
// Only RSA is supported at this time.
- if (!m_keyType.isNull() && !strcasecmp(m_keyType, "rsa")) {
+ if (!m_keyType.isNull() && strcasecmp(m_keyType, "rsa")) {
return false;
}
QString value = KSSLKeyGen::signedPublicKeyAndChallengeString((unsigned)selectedIndex(), m_challenge.string(), getDocument()->part()->baseURL());
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list