commit | d16e1131b4556203b17bd05df93218b2dbb0ccb2 | [log] [tgz] |
---|---|---|
author | Richard Levitte <levitte@openssl.org> | Sat Apr 06 20:22:48 2002 +0000 |
committer | Richard Levitte <levitte@openssl.org> | Sat Apr 06 20:22:48 2002 +0000 |
tree | 8dbeeda32a07c171092017dfa7163fe216ba8050 | |
parent | a18894d159651891d11155af2feaadb18b4f256c [diff] [blame] |
Allow longer program names (VMS allows up to 39 characters). Submitted by Compaq.
diff --git a/demos/b64.c b/demos/b64.c index 8e248e7..113da89 100644 --- a/demos/b64.c +++ b/demos/b64.c
@@ -91,8 +91,8 @@ EVP_CIPHER *cipher=NULL,*c; char *inf=NULL,*outf=NULL; BIO *in=NULL,*out=NULL,*b64=NULL,*benc=NULL,*rbio=NULL,*wbio=NULL; -#define PROG_NAME_SIZE 16 - char pname[PROG_NAME_SIZE]; +#define PROG_NAME_SIZE 39 + char pname[PROG_NAME_SIZE+1]; apps_startup();