-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
tb
committed
Aug 7, 2023
1 parent
06fb3ee
commit c1cf983
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/* $OpenBSD: bss_sock.c,v 1.26 2023/07/05 21:23:37 beck Exp $ */ | ||
/* $OpenBSD: bss_sock.c,v 1.27 2023/08/07 10:54:14 tb Exp $ */ | ||
/* Copyright (C) 1995-1998 Eric Young ([email protected]) | ||
* All rights reserved. | ||
* | ||
|
@@ -173,7 +173,7 @@ sock_ctrl(BIO *b, int cmd, long num, void *ptr) | |
switch (cmd) { | ||
case BIO_C_SET_FD: | ||
sock_free(b); | ||
b->num= *((int *)ptr); | ||
b->num = *((int *)ptr); | ||
b->shutdown = (int)num; | ||
b->init = 1; | ||
break; | ||
|