Provide git_config with a callback-data parameter
git_config() only had a function parameter, but no callback data parameter. This assumes that all callback functions only modify global variables. With this patch, every callback gets a void * parameter, and it is hoped that this will help the libification effort. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
0bdf93cbf0
commit
ef90d6d420
@ -1247,7 +1247,7 @@ static imap_server_conf_t server =
|
||||
static char *imap_folder;
|
||||
|
||||
static int
|
||||
git_imap_config(const char *key, const char *val)
|
||||
git_imap_config(const char *key, const char *val, void *cb)
|
||||
{
|
||||
char imap_key[] = "imap.";
|
||||
|
||||
@ -1296,7 +1296,7 @@ main(int argc, char **argv)
|
||||
/* init the random number generator */
|
||||
arc4_init();
|
||||
|
||||
git_config( git_imap_config );
|
||||
git_config(git_imap_config, NULL);
|
||||
|
||||
if (!imap_folder) {
|
||||
fprintf( stderr, "no imap store specified\n" );
|
||||
|
Reference in New Issue
Block a user