All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] checksum: Fix undefined references
@ 2018-05-17 16:26 Claudio Takahasi
  2018-05-17 16:30 ` Denis Kenzior
  0 siblings, 1 reply; 2+ messages in thread
From: Claudio Takahasi @ 2018-05-17 16:26 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 1273 bytes --]

---
 ell/checksum.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/ell/checksum.c b/ell/checksum.c
index 1e6a4b5..56b337c 100644
--- a/ell/checksum.c
+++ b/ell/checksum.c
@@ -223,8 +223,8 @@ LIB_EXPORT struct l_checksum *l_checksum_new_cmac_aes(const void *key,
 	return checksum;
 }
 
-struct l_checksum *l_checksum_new_hmac(enum l_checksum_type type,
-					const void *key, size_t key_len)
+LIB_EXPORT struct l_checksum *l_checksum_new_hmac(enum l_checksum_type type,
+					  const void *key, size_t key_len)
 {
 	struct l_checksum *checksum;
 	int fd;
@@ -309,7 +309,7 @@ LIB_EXPORT void l_checksum_free(struct l_checksum *checksum)
  *
  * Resets the internal state of @checksum.
  **/
-void l_checksum_reset(struct l_checksum *checksum)
+LIB_EXPORT void l_checksum_reset(struct l_checksum *checksum)
 {
 	if (unlikely(!checksum))
 		return;
@@ -353,7 +353,7 @@ LIB_EXPORT bool l_checksum_update(struct l_checksum *checksum,
  *
  * Returns: true if the operation succeeded, false otherwise.
  **/
-bool l_checksum_updatev(struct l_checksum *checksum,
+LIB_EXPORT bool l_checksum_updatev(struct l_checksum *checksum,
 					const struct iovec *iov, size_t iov_len)
 {
 	struct msghdr msg;
-- 
2.17.0


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] checksum: Fix undefined references
  2018-05-17 16:26 [PATCH] checksum: Fix undefined references Claudio Takahasi
@ 2018-05-17 16:30 ` Denis Kenzior
  0 siblings, 0 replies; 2+ messages in thread
From: Denis Kenzior @ 2018-05-17 16:30 UTC (permalink / raw)
  To: ell

[-- Attachment #1: Type: text/plain, Size: 203 bytes --]

Hi Claudio,

On 05/17/2018 11:26 AM, Claudio Takahasi wrote:
> ---
>   ell/checksum.c | 8 ++++----
>   1 file changed, 4 insertions(+), 4 deletions(-)
> 

Applied, thanks.

Regards,
-Denis


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-05-17 16:30 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-17 16:26 [PATCH] checksum: Fix undefined references Claudio Takahasi
2018-05-17 16:30 ` Denis Kenzior

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.