diff options
author | markus <> | 2003-04-09 21:46:02 +0000 |
---|---|---|
committer | markus <> | 2003-04-09 21:46:02 +0000 |
commit | 873608ca11b3956ba42272e7fda34b0187999d30 (patch) | |
tree | 5af9858a0dc74376ee81f10180efe70957235d2b /src/lib/libc/crypt | |
parent | 52f57a2db4b204a09f896d7f7911dba56b0f80af (diff) | |
download | openbsd-873608ca11b3956ba42272e7fda34b0187999d30.tar.gz openbsd-873608ca11b3956ba42272e7fda34b0187999d30.tar.bz2 openbsd-873608ca11b3956ba42272e7fda34b0187999d30.zip |
makeing local table static saves some bytes; idea from mickey@
Diffstat (limited to 'src/lib/libc/crypt')
-rw-r--r-- | src/lib/libc/crypt/blowfish.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libc/crypt/blowfish.c b/src/lib/libc/crypt/blowfish.c index 8be04a6463..12226b5215 100644 --- a/src/lib/libc/crypt/blowfish.c +++ b/src/lib/libc/crypt/blowfish.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: blowfish.c,v 1.16 2002/02/19 19:39:36 millert Exp $ */ | 1 | /* $OpenBSD: blowfish.c,v 1.17 2003/04/09 21:46:02 markus Exp $ */ |
2 | /* | 2 | /* |
3 | * Blowfish block cipher for OpenBSD | 3 | * Blowfish block cipher for OpenBSD |
4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> | 4 | * Copyright 1997 Niels Provos <provos@physnet.uni-hamburg.de> |
@@ -126,7 +126,7 @@ Blowfish_initstate(c) | |||
126 | 126 | ||
127 | /* P-box and S-box tables initialized with digits of Pi */ | 127 | /* P-box and S-box tables initialized with digits of Pi */ |
128 | 128 | ||
129 | const blf_ctx initstate = | 129 | static const blf_ctx initstate = |
130 | 130 | ||
131 | { { | 131 | { { |
132 | { | 132 | { |