Typo.
[gnulib.git] / lib / check-version.c
index b54f2e5..4df90a4 100644 (file)
    gcry_check_version from Werner Koch's Libgcrypt.  Paul Eggert
    suggested the use of strverscmp to simplify implementation. */
 
-#if HAVE_CONFIG_H
-# include "config.h"
+#ifdef HAVE_CONFIG_H
+# include <config.h>
 #endif
 
 #include <stddef.h>
 #include <strverscmp.h>
 
 /* Get specification. */
-#include "check_version.h"
+#include "check-version.h"
 
 /* Check that the the version of the library (i.e., the CPP symbol
  * VERSION) is at minimum the requested one in REQ_VERSION (typically
@@ -40,7 +40,7 @@
 const char *
 check_version (const char *req_version)
 {
-  if (!req_version || strverscmp (req_version, VERSION) < 0)
+  if (!req_version || strverscmp (req_version, VERSION) <= 0)
     return VERSION;
 
   return NULL;