2011-01-21 Marcus Brinkmann <mb@g10code.com>
* engine-gpgconf.c (_gpgme_conf_opt_change): Fix the case that is
not self-assignment.
+2011-01-21 Marcus Brinkmann <mb@g10code.com>
+
+ * engine-gpgconf.c (_gpgme_conf_opt_change): Fix the case that is
+ not self-assignment.
+
2010-12-08 Werner Koch <wk@g10code.com>
* gpgme-tool.c (strcpy_escaped_plus): New.
{
if (opt->new_value)
release_arg (opt->new_value, opt->alt_type);
- opt->new_value = NULL;
+ opt->new_value = NULL;
opt->change_value = 0;
}
else
/* Support self-assignment, for example for adding an item to an
existing list. */
if (opt->new_value && arg != opt->new_value)
- {
- release_arg (opt->new_value, opt->alt_type);
- opt->new_value = arg;
- }
+ release_arg (opt->new_value, opt->alt_type);
+ opt->new_value = arg;
opt->change_value = 1;
}
return 0;