projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7f163d0
)
lib: EXPORT_SYMBOL sha_init
author
Hannes Frederic Sowa
<hannes@stressinduktion.org>
Mon, 23 Mar 2015 22:35:59 +0000
(23:35 +0100)
committer
David S. Miller
<davem@davemloft.net>
Tue, 24 Mar 2015 02:12:08 +0000
(22:12 -0400)
We need this symbol later on in ipv6.ko, thus export it via EXPORT_SYMBOL
like sha_transform already is.
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
lib/sha1.c
patch
|
blob
|
history
diff --git
a/lib/sha1.c
b/lib/sha1.c
index 1df191e04a24c800f59759f4445d799822f5d9e9..5a56dfd7b99de98ca47f75ab528dc8e3196efd3e 100644
(file)
--- a/
lib/sha1.c
+++ b/
lib/sha1.c
@@
-198,3
+198,4
@@
void sha_init(__u32 *buf)
buf[3] = 0x10325476;
buf[4] = 0xc3d2e1f0;
}
+EXPORT_SYMBOL(sha_init);