aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2014-02-28 06:21:22 +0200
committerSergey Poznyakoff <gray@gnu.org>2014-02-28 06:21:22 +0200
commit78fddd42aa8421f6bcce495d3784753290bd615f (patch)
tree65b0ee7b8f1ef6a41a956ce27809f74d8487d1b3
parentd0f99a1a200a132bb0a3b7706f396f5fa6487eff (diff)
downloadvcsync-78fddd42aa8421f6bcce495d3784753290bd615f.tar.gz
vcsync-78fddd42aa8421f6bcce495d3784753290bd615f.tar.bz2
Bugfix
-rw-r--r--src/config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/config.c b/src/config.c
index 6a1c62b..0adf710 100644
--- a/src/config.c
+++ b/src/config.c
@@ -242,7 +242,7 @@ static struct grecs_keyword vcsync_config_kw[] = {
grecs_type_bool, GRECS_DFLT,
NULL, offsetof(struct vcsync_config, detach) },
{ "sleep", "seconds", "Seconds to sleep before synchronizing",
- grecs_type_ulong, GRECS_DFLT,
+ grecs_type_uint, GRECS_DFLT,
NULL, offsetof(struct vcsync_config, sleep_time) },
{ "message", "text", "Message to display before synchronizing",
grecs_type_string, GRECS_DFLT,
@@ -275,7 +275,7 @@ static struct grecs_keyword vcsync_kw[] = {
grecs_type_bool, GRECS_DFLT,
&default_config.detach },
{ "sleep", "seconds", "Seconds to sleep before synchronizing",
- grecs_type_ulong, GRECS_DFLT,
+ grecs_type_uint, GRECS_DFLT,
&default_config.sleep_time },
{ "message", "text", "Message to display before synchronizing",
grecs_type_string, GRECS_DFLT,

Return to:

Send suggestions and report system problems to the System administrator.