"Shawn O. Pearce" <spearce@xxxxxxxxxxx> wrote: > Daniel Barkalow <barkalow@xxxxxxxxxxxx> wrote: > > -int main(int argc, char **argv) > > +void setup_send_pack(struct send_pack_args *args) > > +{ > > + receivepack = args->receivepack; > > + verbose = args->verbose; > > + send_all = args->send_all; > > + force_update = args->force_update; > > + use_thin_pack = args->use_thin_pack; > > + dry_run = args->dry_run; > > +} > ... > > +struct send_pack_args { > > + const char *receivepack; > > + int verbose; > > + int send_all; > > + int force_update; > > + int use_thin_pack; > > + int dry_run; > > +}; > > + > > Ick. How about doing what I did with builtin-fetch-pack.c [...] To be more precise please refer to the following fetch-pack changes: fa74052922: Always obtain fetch-pack arguments from struct fetch_pack_args bbaf458428: Use 'unsigned:1' when we mean boolean options -- Shawn. - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html