std.crypto.tls.Client: expose InitError (#31610)
Fixes: https://codeberg.org/ziglang/zig/issues/31581
Reviewed-on: https://codeberg.org/ziglang/zig/pulls/31610
Co-authored-by: akhildevelops <akhildevelops@noreply.codeberg.org>
Co-committed-by: akhildevelops <akhildevelops@noreply.codeberg.org>
1 files changed, 1 insertions(+), 1 deletions(-)
lib
lib/std/crypto/tls/Client.zig+1-1
| ... | ... | @@ -139,7 +139,7 @@ pub const Options = struct { |
| 139 | 139 | pub const entropy_len = 240; |
| 140 | 140 | }; |
| 141 | 141 | |
| 142 | | const InitError = error{ |
| 142 | pub const InitError = error{ |
| 143 | 143 | InsufficientEntropy, |
| 144 | 144 | DiskQuota, |
| 145 | 145 | LockViolation, |