Revision 8da61a2ab48175526390233c8bcedf63a3cdb6c4 authored by Andreas Gruenbacher on 12 March 2010, 22:27:33 UTC, committed by Junio C Hamano on 20 March 2010, 16:27:17 UTC
The open-coded version to initialize each and every member will break
when a new member is added to the structure.

Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent aac1d7b
Raw File
builtin-update-server-info.c
#include "cache.h"
#include "builtin.h"
#include "parse-options.h"

static const char * const update_server_info_usage[] = {
	"git update-server-info [--force]",
	NULL
};

int cmd_update_server_info(int argc, const char **argv, const char *prefix)
{
	int force = 0;
	struct option options[] = {
		OPT_BOOLEAN('f', "force", &force,
			"update the info files from scratch"),
		OPT_END()
	};

	argc = parse_options(argc, argv, prefix, options,
			     update_server_info_usage, 0);
	if (argc > 0)
		usage_with_options(update_server_info_usage, options);

	return !!update_server_info(force);
}
back to top