X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=blobdiff_plain;f=client%2Fadmin.c;h=d62b830d2f1747cd9b9456d96547ecaa00e8b708;hp=972a83ca4e6aa0a0ac808d817b946a388da88d12;hb=d0e351c12fff564d876958e860338d43716dc269;hpb=88d3bedf772316f87e1996f655ccf8d1e2589755 diff --git a/client/admin.c b/client/admin.c index 972a83c..d62b830 100644 --- a/client/admin.c +++ b/client/admin.c @@ -2,6 +2,9 @@ * Copyright (C) 1995-2010 Index Data * See the file LICENSE for details. */ +#if HAVE_CONFIG_H +#include +#endif #include #include @@ -36,7 +39,7 @@ ODR getODROutputStream(void); extern char *databaseNames[]; extern int num_databaseNames; -int sendAdminES(int type, char* param1) +static int sendAdminES(int type, char* param1) { ODR out = getODROutputStream(); char *dbname = odr_strdup (out, databaseNames[0]); @@ -236,7 +239,7 @@ int cmd_adm_import(const char *arg) oct->len = oct->size = status.st_size; oct->buf = (unsigned char *) odr_malloc (out, oct->size); - if (fread(oct->buf, 1, oct->size, inf) != oct->size) + if (fread(oct->buf, 1, oct->size, inf) != (size_t) oct->size) { printf("Incomplete read of file %s\n", fname); }