From 4b8021779e4db2a212a8214c17e778e843ae2b3a Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Fri, 10 Jan 2014 08:08:58 +0100 Subject: util: Fix const cast failures when building with -Werror MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When building with -Werror 'make check' fails with many errors like: ../src/tests/cmocka/test_authtok.c: In function ‘test_sss_authtok_password’: ../src/tests/cmocka/test_authtok.c:98:48: error: cast discards ‘__attribute__((const))’ qualifier from pointer target type [-Werror=cast-qual] Make sss_authtok_set() @data argument const, and fix its documentation --- src/util/authtok.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/util/authtok.h') diff --git a/src/util/authtok.h b/src/util/authtok.h index 8f327d4c0..1f6def4c3 100644 --- a/src/util/authtok.h +++ b/src/util/authtok.h @@ -131,7 +131,7 @@ void sss_authtok_set_empty(struct sss_auth_token *tok); * @param tok A pointer to a sss_auth_token structure to change, also * used as a memory context to allocate the internal data. * @param type A valid authtok type - * @param ccfile A data pointer + * @param data A data pointer * @param len The length of the data * * @return EOK on success @@ -139,7 +139,7 @@ void sss_authtok_set_empty(struct sss_auth_token *tok); */ errno_t sss_authtok_set(struct sss_auth_token *tok, enum sss_authtok_type type, - uint8_t *data, size_t len); + const uint8_t *data, size_t len); /** * @brief Copy an auth token from source to destination -- cgit