projects
/
haproxy-2.1.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c862c5
)
BUG/MINOR: conf: Fix 'maxsslconn' statement error if built without OPENSSL.
author
Emeric Brun
<ebrun@exceliance.fr>
Tue, 2 Oct 2012 16:45:42 +0000
(18:45 +0200)
committer
Willy Tarreau
<w@1wt.eu>
Fri, 5 Oct 2012 17:59:55 +0000
(19:59 +0200)
src/cfgparse.c
patch
|
blob
|
history
diff --git
a/src/cfgparse.c
b/src/cfgparse.c
index
86bc15c
..
9d1a6fd
100644
(file)
--- a/
src/cfgparse.c
+++ b/
src/cfgparse.c
@@
-727,11
+727,9
@@
int cfg_parse_global(const char *file, int linenum, char **args, int kwm)
}
global.maxsslconn = atol(args[1]);
#else
- if (*(args[1]) == 0) {
- Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]);
- err_code |= ERR_ALERT | ERR_FATAL;
- goto out;
- }
+ Alert("parsing [%s:%d] : '%s' is not implemented.\n", file, linenum, args[0]);
+ err_code |= ERR_ALERT | ERR_FATAL;
+ goto out;
#endif
}
else if (!strcmp(args[0], "maxconnrate")) {