diff options
author | Stef Walter <stef@memberwebs.com> | 2008-12-08 18:19:35 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2008-12-08 18:19:35 +0000 |
commit | 356d3460f2fad27e9f7a9d2cabca2d58eacf356f (patch) | |
tree | 7804eec89a38d3e7715ab7e6147319052ae0076d | |
parent | f3a8bb5aa844e519b327b0722017efe95051979c (diff) |
Turn warning about function list into an info.
-rw-r--r-- | src/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/module.c b/src/module.c index 7911bf2..baf9cbe 100644 --- a/src/module.c +++ b/src/module.c @@ -318,7 +318,7 @@ p11t_module_load(const char *filename) P11T_CHECK_RV("Call through function list", rv, CKR_OK); if(!memcmp(list, p11t_module_funcs, sizeof(*list)) != 0) - P11T_CHECK_FAIL("See if returns same data as library entry point"); + p11t_check_info("Call doesn't return same data as library C_GetFunctionList entry point"); } return CONTINUE; |