aboutsummaryrefslogtreecommitdiffhomepage
path: root/backends/maweb.c
diff options
context:
space:
mode:
Diffstat (limited to 'backends/maweb.c')
-rw-r--r--backends/maweb.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/backends/maweb.c b/backends/maweb.c
index 4d41f0e..18d0351 100644
--- a/backends/maweb.c
+++ b/backends/maweb.c
@@ -145,10 +145,10 @@ static int maweb_configure(char* option, char* value){
static int maweb_configure_instance(instance* inst, char* option, char* value){
maweb_instance_data* data = (maweb_instance_data*) inst->impl;
- char* host = NULL, *port = NULL;
+ char* host = NULL, *port = NULL, *fd_opts = NULL;
if(!strcmp(option, "host")){
- mmbackend_parse_hostspec(value, &host, &port);
+ mmbackend_parse_hostspec(value, &host, &port, &fd_opts);
if(!host){
fprintf(stderr, "Invalid host specified for maweb instance %s\n", inst->name);
return 1;