diff options
author | markm <markm@FreeBSD.org> | 1997-10-08 07:02:48 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 1997-10-08 07:02:48 +0000 |
commit | ad57db7eefbd5760a834879d200ce1043f86046d (patch) | |
tree | ad930b9e4cbd9fd82de9b93634e6d5a77677bddf /secure | |
parent | bbf8a25d45229a908ffeb287a6b79a1aa1c83ff5 (diff) | |
download | FreeBSD-src-ad57db7eefbd5760a834879d200ce1043f86046d.zip FreeBSD-src-ad57db7eefbd5760a834879d200ce1043f86046d.tar.gz |
Staticise a variable.
PR: 4722
Submitted by: Karl Denninger
Diffstat (limited to 'secure')
-rw-r--r-- | secure/lib/libdes/enc_writ.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/secure/lib/libdes/enc_writ.c b/secure/lib/libdes/enc_writ.c index 0b7a50b..2f15d08 100644 --- a/secure/lib/libdes/enc_writ.c +++ b/secure/lib/libdes/enc_writ.c @@ -65,7 +65,7 @@ des_cblock (*iv); long rnum; int i,j,k,outnum; - char *outbuf=NULL; + static char *outbuf=NULL; char shortbuf[8]; char *p; static int start=1; |