X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=index%2Fzebrash.c;h=a9d1d383f1bc0a1aefd2b750a59263d52f7187ba;hb=3e8db66d56c466a5a269362eb70b4931d9579128;hp=6980699075b9b041f1287cf87936832779a43ff3;hpb=f8e697e68854f41919fb4cd6ef40c22018239de8;p=idzebra-moved-to-github.git diff --git a/index/zebrash.c b/index/zebrash.c index 6980699..a9d1d38 100644 --- a/index/zebrash.c +++ b/index/zebrash.c @@ -1,4 +1,4 @@ -/* $Id: zebrash.c,v 1.26 2004-06-15 07:42:45 adam Exp $ +/* $Id: zebrash.c,v 1.29 2004-08-25 09:23:36 adam Exp $ Copyright (C) 2002,2003,2004 Index Data Aps @@ -37,7 +37,7 @@ Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA #include #endif -#include "zebraapi.h" +#include #include #include #include @@ -166,7 +166,7 @@ static int cmd_zebra_start( char *args[], WRBUF outbuff) wrbuf_puts(outbuff, "\n"); conf=default_config; } - zs=zebra_start(conf, 0, 0); + zs=zebra_start(conf); if (!zs) { wrbuf_puts(outbuff, "zebra_start failed" ); return 2; @@ -347,7 +347,7 @@ static int cmd_end_trans( char *args[], WRBUF outbuff) static int cmd_record_insert( char *args[], WRBUF outbuff) { - int sysno=0; + SYSNO sysno=0; int rc; char *rec=restargs(args,1); @@ -357,7 +357,8 @@ static int cmd_record_insert( char *args[], WRBUF outbuff) 0, /* match */ 0, /* fname */ rec, - strlen(rec)); + strlen(rec), + 0); if (0==rc) { wrbuf_printf(outbuff,"ok sysno=%d\n",sysno);