Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
cpython
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
cpython
Commits
281e5f88
Kaydet (Commit)
281e5f88
authored
Eyl 05, 2016
tarafından
Christian Heimes
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Issue #26470: Use short name rather than name for compression name to fix #27958.
üst
f4a73817
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
6 deletions
+1
-6
_ssl.c
Modules/_ssl.c
+1
-6
No files found.
Modules/_ssl.c
Dosyayı görüntüle @
281e5f88
...
...
@@ -151,11 +151,6 @@ static int COMP_get_type(const COMP_METHOD *meth)
{
return
meth
->
type
;
}
static
const
char
*
COMP_get_name
(
const
COMP_METHOD
*
meth
)
{
return
meth
->
name
;
}
#endif
static
pem_password_cb
*
SSL_CTX_get_default_passwd_cb
(
SSL_CTX
*
ctx
)
...
...
@@ -1644,7 +1639,7 @@ _ssl__SSLSocket_compression_impl(PySSLSocket *self)
comp_method
=
SSL_get_current_compression
(
self
->
ssl
);
if
(
comp_method
==
NULL
||
COMP_get_type
(
comp_method
)
==
NID_undef
)
Py_RETURN_NONE
;
short_name
=
COMP_get_name
(
comp_method
);
short_name
=
OBJ_nid2sn
(
COMP_get_type
(
comp_method
)
);
if
(
short_name
==
NULL
)
Py_RETURN_NONE
;
return
PyUnicode_DecodeFSDefault
(
short_name
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment