X-Git-Url: http://git.indexdata.com/?p=idzebra-moved-to-github.git;a=blobdiff_plain;f=rset%2Frsnull.c;h=4e9cc70de764d02207ec9dac47cda04748f9781f;hp=f19f45b2c3cb61c83aa2d2066be0fa30766f985a;hb=HEAD;hpb=a66b7d79383ae700f3358731eecfe2aafed0e90d diff --git a/rset/rsnull.c b/rset/rsnull.c index f19f45b..4e9cc70 100644 --- a/rset/rsnull.c +++ b/rset/rsnull.c @@ -1,5 +1,5 @@ /* This file is part of the Zebra server. - Copyright (C) 1994-2010 Index Data + Copyright (C) Index Data Zebra is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free @@ -17,6 +17,9 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ +#if HAVE_CONFIG_H +#include +#endif #include #include #include @@ -27,9 +30,8 @@ static void r_close(RSFD rfd); static void r_delete(RSET ct); static void r_pos(RSFD rfd, double *current, double *total); static int r_read(RSFD rfd, void *buf, TERMID *term); -static int r_write(RSFD rfd, const void *buf); -static const struct rset_control control = +static const struct rset_control control = { "null", r_delete, @@ -39,7 +41,7 @@ static const struct rset_control control = 0, /* no forward */ r_pos, r_read, - r_write, + rset_no_write, }; RSET rset_create_null(NMEM nmem, struct rset_key_control *kcontrol, @@ -87,11 +89,6 @@ static int r_read(RSFD rfd, void *buf, TERMID *term) return 0; } -static int r_write(RSFD rfd, const void *buf) -{ - yaz_log(YLOG_FATAL, "NULL set type is read-only"); - return -1; -} /* * Local variables: * c-basic-offset: 4