Deleted Added
full compact
engine.c (120631) engine.c (127128)
1/* apps/engine.c -*- mode: C; c-file-style: "eay" -*- */
2/* Written by Richard Levitte <richard@levitte.org> for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 108 unchanged lines hidden (view full) ---

117 *size += step;
118 *buf = OPENSSL_realloc(*buf, *size);
119 }
120
121 if (*buf == NULL)
122 return 0;
123
124 if (**buf != '\0')
1/* apps/engine.c -*- mode: C; c-file-style: "eay" -*- */
2/* Written by Richard Levitte <richard@levitte.org> for the OpenSSL
3 * project 2000.
4 */
5/* ====================================================================
6 * Copyright (c) 2000 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without

--- 108 unchanged lines hidden (view full) ---

117 *size += step;
118 *buf = OPENSSL_realloc(*buf, *size);
119 }
120
121 if (*buf == NULL)
122 return 0;
123
124 if (**buf != '\0')
125 strcat(*buf, ", ");
126 strcat(*buf, s);
125 BUF_strlcat(*buf, ", ", *size);
126 BUF_strlcat(*buf, s, *size);
127
128 return 1;
129 }
130
131static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
132 {
133 int started = 0, err = 0;
134 /* Indent before displaying input flags */

--- 395 unchanged lines hidden ---
127
128 return 1;
129 }
130
131static int util_flags(BIO *bio_out, unsigned int flags, const char *indent)
132 {
133 int started = 0, err = 0;
134 /* Indent before displaying input flags */

--- 395 unchanged lines hidden ---