author | Sergey Poznyakoff <gray@gnu.org.ua> | 2009-02-26 15:39:08 (GMT) |
---|---|---|
committer | Sergey Poznyakoff <gray@gnu.org.ua> | 2009-02-26 15:39:08 (GMT) |
commit | 514797c56e431f37de9a00834281f990a7b15c46 (patch) (side-by-side diff) | |
tree | 1f35e3b06d387e424f5a0d866390dccd34efd202 /src | |
parent | 5b1f7f7213c1033211ce08307922e04044f872f4 (diff) | |
download | wydawca-514797c56e431f37de9a00834281f990a7b15c46.tar.gz wydawca-514797c56e431f37de9a00834281f990a7b15c46.tar.bz2 |
Minor fixes
-rw-r--r-- | src/cmdline.opt | 2 | ||||
-rw-r--r-- | src/config.c | 4 | ||||
-rw-r--r-- | src/vtab.c | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/src/cmdline.opt b/src/cmdline.opt index 8b45791..fd87e5e 100644 --- a/src/cmdline.opt +++ b/src/cmdline.opt @@ -130,7 +130,7 @@ END GROUP(Preprocessor control) -OPTION(include-directory,I,[DIR], +OPTION(include-directory,I,DIR, [<add include directory>]) BEGIN gconf_preproc_add_include_dir (optarg); diff --git a/src/config.c b/src/config.c index 5f75f89..57bd8cb 100644 --- a/src/config.c +++ b/src/config.c @@ -1131,6 +1131,8 @@ static struct gconf_keyword spool_kw[] = { { "archive", N_("type: string"), N_("Set up archivation"), gconf_type_section, NULL, offsetof(struct spool, archive), cb_archive, NULL, archive_kw }, + { "archive-signatures", NULL, N_("Control implicit signature archivation"), + gconf_type_bool, &archive_signatures }, { "notify-event", NULL, N_("Configure notification"), gconf_type_section, NULL, offsetof(struct spool, notification), cb_notify_event, NULL, notify_event_kw }, @@ -1379,7 +1381,7 @@ static struct gconf_keyword wydawca_kw[] = { gconf_type_section, default_access_method, 0, cb_access_method, NULL, access_method_kw }, - { "spool", NULL, N_("Define distribution spool"), + { "spool", N_("tag: string"), N_("Define distribution spool"), gconf_type_section, NULL, 0, cb_spool, NULL, spool_kw }, @@ -26,6 +26,9 @@ static struct virt_tab_reg reg[] = { { "file", { dir_test_url, dir_move_file, dir_archive_file, dir_symlink_file, dir_rmsymlink_file } }, + { "dir", + { dir_test_url, dir_move_file, dir_archive_file, dir_symlink_file, + dir_rmsymlink_file } }, { "null", { NULL, null_move_file, null_archive_file, null_symlink_file, null_rmsymlink_file } }, |