diff options
Diffstat (limited to 'common/library.c')
-rw-r--r-- | common/library.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/common/library.c b/common/library.c index d0c246c..de340bb 100644 --- a/common/library.c +++ b/common/library.c @@ -116,6 +116,14 @@ p11_message_quiet (void) p11_unlock (); } +void +p11_message_loud (void) +{ + p11_lock (); + print_messages = true; + p11_unlock (); +} + const char* p11_message_last (void) { |