summaryrefslogtreecommitdiffstats
path: root/net/third_party
diff options
context:
space:
mode:
authorwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-19 05:40:18 +0000
committerwtc@chromium.org <wtc@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-19 05:40:18 +0000
commite76c9666d967856694b1a433c7edf1443257899c (patch)
treedcac650e4a060f63c933170a270a89b0b0f1d192 /net/third_party
parentf18a96da8a04102d68fab3083a414552dbc6b378 (diff)
downloadchromium_src-e76c9666d967856694b1a433c7edf1443257899c.zip
chromium_src-e76c9666d967856694b1a433c7edf1443257899c.tar.gz
chromium_src-e76c9666d967856694b1a433c7edf1443257899c.tar.bz2
Fix a comment nit for SSLNextProtoCallback.
R=agl@chromium.org BUG=none TEST=none Review URL: http://codereview.chromium.org/8349004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@106232 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'net/third_party')
-rw-r--r--net/third_party/nss/patches/nextproto.patch2
-rw-r--r--net/third_party/nss/ssl/ssl.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/net/third_party/nss/patches/nextproto.patch b/net/third_party/nss/patches/nextproto.patch
index 46021b42..e20a596 100644
--- a/net/third_party/nss/patches/nextproto.patch
+++ b/net/third_party/nss/patches/nextproto.patch
@@ -43,7 +43,7 @@ index 4a9e89d..2cf777d 100644
+ * to be well formed per the NPN spec. |protoOut| is a buffer provided by the
+ * caller, of length 255 (the maximum allowed by the protocol).
+ * On successful return, the protocol to be announced to the server will be in
-+ * |protoOut| and its length in |protoOutLen|. */
++ * |protoOut| and its length in |*protoOutLen|. */
+typedef SECStatus (PR_CALLBACK *SSLNextProtoCallback)(
+ void *arg,
+ PRFileDesc *fd,
diff --git a/net/third_party/nss/ssl/ssl.h b/net/third_party/nss/ssl/ssl.h
index debfbfb..2634199 100644
--- a/net/third_party/nss/ssl/ssl.h
+++ b/net/third_party/nss/ssl/ssl.h
@@ -163,7 +163,7 @@ SSL_IMPORT SECStatus SSL_CertDBHandleSet(PRFileDesc *fd, CERTCertDBHandle *dbHan
* to be well formed per the NPN spec. |protoOut| is a buffer provided by the
* caller, of length 255 (the maximum allowed by the protocol).
* On successful return, the protocol to be announced to the server will be in
- * |protoOut| and its length in |protoOutLen|. */
+ * |protoOut| and its length in |*protoOutLen|. */
typedef SECStatus (PR_CALLBACK *SSLNextProtoCallback)(
void *arg,
PRFileDesc *fd,