src/utils_subst.c: Print the warning of the subst_string function when appropriate.
authorFlorian Forster <octo@huhu.verplant.org>
Sun, 21 Dec 2008 02:00:51 +0000 (03:00 +0100)
committerFlorian Forster <octo@huhu.verplant.org>
Sun, 21 Dec 2008 02:00:51 +0000 (03:00 +0100)
A leftover from the previous setting, a hard-coded maximum, was forgotten.

src/utils_subst.c

index 3c9fe5a..640007c 100644 (file)
@@ -128,7 +128,7 @@ char *subst_string (char *buf, size_t buflen, const char *string,
                strncpy (buf, temp, buflen);
        }
 
-       if (i >= 100)
+       if (i >= buflen)
        {
                WARNING ("subst_string: Loop exited after %zu iterations: "
                                "string = %s; needle = %s; replacement = %s;",