blob: e13f48a80521f8d8b85ad78d0ad7c7c9a54ef444 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ./config.c.orig 2012-12-04 19:40:15.395225527 +1100
+++ ./config.c 2012-12-04 19:40:38.975104852 +1100
@@ -77,7 +77,7 @@
fclose (fp);
/* Check config settings */
- if (strnlen(options->cluster_name, MAXLEN)==0)
+ if (strlen(options->cluster_name)==0)
{
fprintf(stderr, "Cluster name is missing. "
"Check the configuration file.\n");
|