*** pgsql/src/interfaces/ecpg/preproc/variable.c 2010/04/01 08:41:01 1.55 --- pgsql/src/interfaces/ecpg/preproc/variable.c 2010/04/01 10:30:53 1.56 *************** *** 1,4 **** ! /* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/variable.c,v 1.54 2010/03/09 11:09:45 meskes Exp $ */ #include "postgres_fe.h" --- 1,4 ---- ! /* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/variable.c,v 1.55 2010/04/01 08:41:01 meskes Exp $ */ #include "postgres_fe.h" *************** new_variable(const char *name, struct EC *** 22,28 **** } static struct variable * ! find_struct_member(const char *name, char *str, struct ECPGstruct_member * members, int brace_level) { char *next = strpbrk(++str, ".-["), *end, --- 22,28 ---- } static struct variable * ! find_struct_member(char *name, char *str, struct ECPGstruct_member * members, int brace_level) { char *next = strpbrk(++str, ".-["), *end, *************** dump_variables(struct arguments * list, *** 444,453 **** dump_variables(list->next, mode); /* Then the current element and its indicator */ ! ECPGdump_a_type(yyout, list->variable->name, list->variable->type, ! list->indicator->name, list->indicator->type, ! NULL, NULL, make_str("0"), NULL, NULL, ! list->variable->brace_level, list->indicator->brace_level); /* Then release the list element. */ if (mode != 0) --- 444,452 ---- dump_variables(list->next, mode); /* Then the current element and its indicator */ ! ECPGdump_a_type(yyout, list->variable->name, list->variable->type, list->variable->brace_level, ! list->indicator->name, list->indicator->type, list->indicator->brace_level, ! NULL, NULL, make_str("0"), NULL, NULL); /* Then release the list element. */ if (mode != 0)