summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorPauli <paul.dale@oracle.com>2019-07-16 20:24:10 +1000
committerPauli <paul.dale@oracle.com>2019-07-16 20:24:10 +1000
commitdd6b270618b8f43009999e45ad6dd03ca50bbe54 (patch)
tree65fd2e97c594dfd973c001c2238063a3d50e0898 /apps
parente3a0d367299ee9f384ef912c644dbb5ef195798d (diff)
Remove tab characters from C source files.
Some have been creeping into the source code. Reviewed-by: Paul Yang <yang.yang@baishancloud.com> (Merged from https://github.com/openssl/openssl/pull/9397)
Diffstat (limited to 'apps')
-rw-r--r--apps/s_client.c2
-rw-r--r--apps/vms_term_sock.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/apps/s_client.c b/apps/s_client.c
index 6f2d133d62..a9a6552706 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -3104,7 +3104,7 @@ int s_client_main(int argc, char **argv)
BIO_printf(bio_err, "RENEGOTIATING\n");
SSL_renegotiate(con);
cbuf_len = 0;
- } else if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
+ } else if (!c_ign_eof && (cbuf[0] == 'K' || cbuf[0] == 'k' )
&& cmdletters) {
BIO_printf(bio_err, "KEYUPDATE\n");
SSL_key_update(con,
diff --git a/apps/vms_term_sock.c b/apps/vms_term_sock.c
index 6d55a83859..1b27699b9d 100644
--- a/apps/vms_term_sock.c
+++ b/apps/vms_term_sock.c
@@ -238,8 +238,8 @@ int TerminalSocket (int FunctionCode, int *ReturnSocket)
}
/*
- ** Deassign the terminal channel
- */
+ ** Deassign the terminal channel
+ */
status = sys$dassgn (TerminalDeviceChan);
if (! (status & 1)) {
LogMessage ("TerminalSocket: SYS$DASSGN () - %08X", status);
@@ -255,15 +255,15 @@ int TerminalSocket (int FunctionCode, int *ReturnSocket)
close (TerminalSocketPair[1]);
/*
- ** Return the initialized socket
- */
+ ** Return the initialized socket
+ */
*ReturnSocket = 0;
break;
default:
/*
- ** Invalid function code
- */
+ ** Invalid function code
+ */
LogMessage ("TerminalSocket: Invalid Function Code - %d", FunctionCode);
return TERM_SOCK_FAILURE;
break;