Commit 63364128 633641280c86ea803a363266313aff6e284c348a by Sergey Poznyakoff

(comsatd_parse_opt): Fixed dereference of child_inputs.

1 parent 02f3549d
...@@ -121,7 +121,7 @@ comsatd_parse_opt (int key, char *arg, struct argp_state *state) ...@@ -121,7 +121,7 @@ comsatd_parse_opt (int key, char *arg, struct argp_state *state)
121 switch (key) 121 switch (key)
122 { 122 {
123 case ARGP_KEY_INIT: 123 case ARGP_KEY_INIT:
124 state->child_inputs[1] = state->input; 124 state->child_inputs[0] = state->input;
125 break; 125 break;
126 126
127 case 'c': 127 case 'c':
......