configure.ac: Remove empty else-block from AC_CHECK_LIB.
authorFlorian Forster <octo@collectd.org>
Fri, 12 May 2017 06:05:47 +0000 (08:05 +0200)
committerFlorian Forster <octo@collectd.org>
Fri, 12 May 2017 09:22:46 +0000 (11:22 +0200)
Fixes: #2272

configure.ac
src/nut.c

index d4207ab..3962fc9 100644 (file)
@@ -5307,8 +5307,7 @@ if test "x$with_libupsclient" = "xyes"; then
   )
 
   AC_CHECK_LIB([upsclient], [upscli_init],
-    [AC_DEFINE([WITH_UPSCLIENT_27], [1], [At least version 2-7])],
-    []
+    [AC_DEFINE([HAVE_UPSCLI_INIT], [1], [Define when upscli_init() (since version 2-7) is available.])]
   )
 
   LDFLAGS="$SAVE_LDFLAGS"
index 5acbdde..7dadf50 100644 (file)
--- a/src/nut.c
+++ b/src/nut.c
@@ -169,7 +169,7 @@ static void nut_submit(nut_ups_t *ups, const char *type,
 } /* void nut_submit */
 
 static int nut_connect(nut_ups_t *ups) {
-#ifdef WITH_UPSCLIENT_27
+#if HAVE_UPSCLI_INIT
   int status;
   int ssl_status;
   int ssl_flags;
@@ -236,7 +236,7 @@ static int nut_connect(nut_ups_t *ups) {
   } /* if (ssl_status == 1 && verify_peer == 1) */
   return (0);
 
-#else /* #ifdef WITH_UPSCLIENT_27 */
+#else /* #if HAVE_UPSCLI_INIT */
   int status;
   int ssl_status;
   int ssl_flags;
@@ -310,7 +310,7 @@ static int nut_read_one(nut_ups_t *ups) {
           ups->upsname, upscli_strerror(ups->conn));
     upscli_disconnect(ups->conn);
     sfree(ups->conn);
-#ifdef WITH_UPSCLIENT_27
+#if HAVE_UPSCLI_INIT
     upscli_cleanup();
 #endif
     return (-1);
@@ -400,7 +400,7 @@ static int nut_shutdown(void) {
     free_nut_ups_t(this);
     this = next;
   }
-#ifdef WITH_UPSCLIENT_27
+#if HAVE_UPSCLI_INIT
   upscli_cleanup();
 #endif