Commit b1c8f405 b1c8f40534a488763290c8e34665d8fbbbc272b4 by Sergey Poznyakoff

(imap4d_parse_opt): Fixed dereference of child_inputs. Thanks to Jordi Mallach.

1 parent 84db0efe
...@@ -81,7 +81,7 @@ imap4d_parse_opt (int key, char *arg, struct argp_state *state) ...@@ -81,7 +81,7 @@ imap4d_parse_opt (int key, char *arg, struct argp_state *state)
81 switch (key) 81 switch (key)
82 { 82 {
83 case ARGP_KEY_INIT: 83 case ARGP_KEY_INIT:
84 state->child_inputs[1] = state->input; 84 state->child_inputs[0] = state->input;
85 break; 85 break;
86 86
87 case 'O': 87 case 'O':
......