diff options
author | 2003-04-09 21:46:02 +0000 | |
---|---|---|
committer | 2003-04-09 21:46:02 +0000 | |
commit | 19d3deb9d65187e05bd4a5a863d28f0832d24c82 (patch) | |
tree | 965bf21f7abd98c05b0e7ad3cc84239df0abfad5 /lib/libc | |
parent | makeing a local array static saves some bytes; idea from mickey@ (diff) | |
download | wireguard-openbsd-19d3deb9d65187e05bd4a5a863d28f0832d24c82.tar.xz wireguard-openbsd-19d3deb9d65187e05bd4a5a863d28f0832d24c82.zip |
makeing local table static saves some bytes; idea from mickey@
Diffstat (limited to 'lib/libc')
-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 = { { { |