From: Martin Mares Date: Wed, 26 Apr 2006 09:48:14 +0000 (+0200) Subject: Lookup lists are no longer char**, but byte**. X-Git-Tag: holmes-import~645^2~11^2~31 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=010efcef35e700ea97a1408624a0721935bdf069;p=libucw.git Lookup lists are no longer char**, but byte**. --- diff --git a/lib/conf2-test.c b/lib/conf2-test.c index aa804cfd..3580f407 100644 --- a/lib/conf2-test.c +++ b/lib/conf2-test.c @@ -130,7 +130,7 @@ time_parser(uns number, byte **pars, time_t *ptr) return NULL; } -static char *alphabet[] = { "alpha", "beta", "gamma", "delta", NULL }; +static byte *alphabet[] = { "alpha", "beta", "gamma", "delta", NULL }; static struct cf_section cf_top = { CF_INIT(init_top), CF_COMMIT(commit_top),