Skip to content

Commit

Permalink
openssl.c: Fixed longer than 79 columns
Browse files Browse the repository at this point in the history
  • Loading branch information
captain-caveman2k committed Aug 22, 2014
1 parent bdfc75e commit 98633c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/vtls/openssl.c
Expand Up @@ -2836,7 +2836,8 @@ size_t Curl_ossl_version(char *buffer, size_t size)
else {
if(ssleay_value&0xff0) {
int minor_ver = (ssleay_value >> 4) & 0xff;
if(minor_ver > 26) { /* handle extended version introduced for 0.9.8za */
if(minor_ver > 26) {
/* handle extended version introduced for 0.9.8za */
sub[1] = (char) ((minor_ver - 1) % 26 + 'a' + 1);
sub[0] = 'z';
}
Expand Down

0 comments on commit 98633c2

Please sign in to comment.