diff options
author | Bodo Möller <bodo@openssl.org> | 2001-09-24 09:54:11 +0200 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2001-09-24 09:54:11 +0200 |
commit | a32d795aae059a6acd6f30ee6e10ba8c25e393cb (patch) | |
tree | 7a2e3b97aac673ee28e2448f4d10dead1d993c40 /demos/easy_tls | |
parent | The 'no-rijndael' option must define OPENSSL_NO_AES because that is (diff) | |
download | openssl-a32d795aae059a6acd6f30ee6e10ba8c25e393cb.tar.xz openssl-a32d795aae059a6acd6f30ee6e10ba8c25e393cb.zip |
avoid everything resembling a magic trigraph
Diffstat (limited to 'demos/easy_tls')
-rw-r--r-- | demos/easy_tls/easy-tls.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/easy_tls/easy-tls.c b/demos/easy_tls/easy-tls.c index 88d7a8a1ec..f79076a42b 100644 --- a/demos/easy_tls/easy-tls.c +++ b/demos/easy_tls/easy-tls.c @@ -1,7 +1,7 @@ /* -*- Mode: C; c-file-style: "bsd" -*- */ /* * easy-tls.c -- generic TLS proxy. - * $Id: easy-tls.c,v 1.1 2001/09/17 19:06:57 bodo Exp $ + * $Id: easy-tls.c,v 1.2 2001/09/24 07:54:09 bodo Exp $ */ /* (c) Copyright 1999 Bodo Moeller. All rights reserved. @@ -73,7 +73,7 @@ */ static char const rcsid[] = -"$Id: easy-tls.c,v 1.1 2001/09/17 19:06:57 bodo Exp $"; +"$Id: easy-tls.c,v 1.2 2001/09/24 07:54:09 bodo Exp $"; #include <assert.h> #include <errno.h> @@ -362,7 +362,7 @@ tls_openssl_errors(const char *app_prefix_1, const char *app_prefix_2, const cha assert(app_prefix_2 != NULL); if (default_text == NULL) - default_text = "???"; + default_text = "?""?""?"; while ((err = ERR_get_error_line_data(&file,&line,&data,&flags)) != 0) { if (reasons_i < sizeof reasons) { |