diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2003-04-09 21:46:03 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2003-04-09 21:46:03 +0000 |
commit | 0005f4ba58613e5d21f0f171f6785acbf41ff903 (patch) | |
tree | 36ca6b1773a91e762dceb31b8b7aa86bb347c07a | |
parent | 49df478ef1e793fa40d54b895b24a242c0b270b2 (diff) |
makeing local table static saves some bytes; idea from mickey@
-rw-r--r-- | lib/libc/crypt/blowfish.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/crypt/blowfish.c b/lib/libc/crypt/blowfish.c index 8be04a6463a..12226b52157 100644 --- a/lib/libc/crypt/blowfish.c +++ b/lib/libc/crypt/blowfish.c @@ -1,4 +1,4 @@ -/* $OpenBSD: blowfish.c,v 1.16 2002/02/19 19:39:36 millert Exp $ */ +/* $OpenBSD: blowfish.c,v 1.17 2003/04/09 21:46:02 markus Exp $ */ /* * Blowfish block cipher for OpenBSD * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> @@ -126,7 +126,7 @@ Blowfish_initstate(c) /* P-box and S-box tables initialized with digits of Pi */ - const blf_ctx initstate = + static const blf_ctx initstate = { { { |