Commit 883014d
committed
Fix const-generic warning in xp_ssl.c
```
ext/openssl/xp_ssl.c:423:24: warning: assignment discards 'const' qualifier from pointer target type [-Wdiscarded-qualifiers]
423 | if (!(wildcard = strchr(certname, '*')) || memchr(certname, '.', wildcard - certname)) {
| ^
```
Since these typically turn into errors with -Werror, fix the build
already.1 parent f81a9a2 commit 883014d
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
413 | 413 | | |
414 | 414 | | |
415 | 415 | | |
416 | | - | |
| 416 | + | |
417 | 417 | | |
418 | 418 | | |
419 | 419 | | |
| |||
0 commit comments