You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
999 B

  1. From 013963ba35e8fe8897211c0acf5ee98f9a871fc1 Mon Sep 17 00:00:00 2001
  2. From: Michael Heimpold <mhei@heimpold.de>
  3. Date: Fri, 10 Jan 2014 19:38:51 +0100
  4. Subject: [PATCH] daemon_set_verbosity: fix erroneous error message
  5. When calling this function with a value other than LOG_DEBUG
  6. the error message was triggered erroneously.
  7. Signed-off-by: Michael Heimpold <mhei@heimpold.de>
  8. ---
  9. libdaemon/dlog.c | 2 +-
  10. 1 file changed, 1 insertion(+), 1 deletion(-)
  11. --- a/libdaemon/dlog.c
  12. +++ b/libdaemon/dlog.c
  13. @@ -37,7 +37,7 @@ static int daemon_verbosity_level = LOG_
  14. void daemon_set_verbosity(int verbosity_prio) {
  15. /* Allow using negative verbosity levels to hide _all_ messages */
  16. - if (verbosity_prio > 0 && (verbosity_prio & LOG_PRIMASK) != LOG_PRIMASK)
  17. + if (verbosity_prio > 0 && (verbosity_prio & LOG_PRIMASK) != verbosity_prio)
  18. daemon_log(LOG_ERR, "The value %d is not a valid priority value", verbosity_prio);
  19. daemon_verbosity_level = verbosity_prio & LOG_PRIMASK;