diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-21 20:37:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-07-21 20:37:09 +0000 |
commit | 9263eb2cd8671309149483f8df4027545844c152 (patch) | |
tree | bd71a3812d90f2e2d25cb7404158b7244d89a0ea /lib/libc | |
parent | 6dba1bee0d13c6179e7711261eed9c4d3a0e6c7b (diff) |
Remove bogus static; from Hiroki Sato
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/hash/sha1.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/hash/sha1.c b/lib/libc/hash/sha1.c index daf832ffd7b..d24d3751ac9 100644 --- a/lib/libc/hash/sha1.c +++ b/lib/libc/hash/sha1.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.c,v 1.11 2003/01/08 19:53:59 millert Exp $ */ +/* $OpenBSD: sha1.c,v 1.12 2003/07/21 20:37:08 millert Exp $ */ /* * SHA-1 in C @@ -15,7 +15,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: sha1.c,v 1.11 2003/01/08 19:53:59 millert Exp $"; +static char rcsid[] = "$OpenBSD: sha1.c,v 1.12 2003/07/21 20:37:08 millert Exp $"; #endif /* LIBC_SCCS and not lint */ #define SHA1HANDSOFF /* Copies data before messing with it. */ @@ -116,7 +116,7 @@ SHA1Transform(u_int32_t state[5], const u_char buffer[64]) CHAR64LONG16 *block; #ifdef SHA1HANDSOFF - static CHAR64LONG16 workspace; + CHAR64LONG16 workspace; block = &workspace; (void)memcpy(block, buffer, 64); #else |