summaryrefslogtreecommitdiff
path: root/lib/libcrypto/bio
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-04-17 13:29:58 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-04-17 13:29:58 +0000
commiteea79ffdb77e3dd4cdbd3f98ed1b44d9522496fa (patch)
tree582e270a44fc61f2faa5741903c997830c0ec48f /lib/libcrypto/bio
parent21401a36c10c0b5d0da3d1bb310bcacad2ea85b6 (diff)
Revert unintended whitespace changes.
Diffstat (limited to 'lib/libcrypto/bio')
-rw-r--r--lib/libcrypto/bio/b_sock.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libcrypto/bio/b_sock.c b/lib/libcrypto/bio/b_sock.c
index 3ccebf77f43..b08226d52ba 100644
--- a/lib/libcrypto/bio/b_sock.c
+++ b/lib/libcrypto/bio/b_sock.c
@@ -209,7 +209,7 @@ BIO_get_port(const char *str, unsigned short *port_ptr)
#endif
else {
SYSerr(SYS_F_GETSERVBYNAME, errno);
- ERR_add_error_data(3, "service = '", str, "'");
+ ERR_add_error_data(3, "service='", str, "'");
return (0);
}
}
@@ -430,7 +430,7 @@ again:
s = socket(server.sa.sa_family, SOCK_STREAM, SOCKET_PROTOCOL);
if (s == -1) {
SYSerr(SYS_F_SOCKET, errno);
- ERR_add_error_data(3, "port = '", host, "'");
+ ERR_add_error_data(3, "port='", host, "'");
BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET, BIO_R_UNABLE_TO_CREATE_SOCKET);
goto err;
}
@@ -477,13 +477,13 @@ again:
}
#endif
SYSerr(SYS_F_BIND, err_num);
- ERR_add_error_data(3, "port = '", host, "'");
+ ERR_add_error_data(3, "port='", host, "'");
BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET, BIO_R_UNABLE_TO_BIND_SOCKET);
goto err;
}
if (listen(s, MAX_LISTEN) == -1) {
SYSerr(SYS_F_BIND, errno);
- ERR_add_error_data(3, "port = '", host, "'");
+ ERR_add_error_data(3, "port='", host, "'");
BIOerr(BIO_F_BIO_GET_ACCEPT_SOCKET, BIO_R_UNABLE_TO_LISTEN_SOCKET);
goto err;
}