X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=client%2Fadmin.c;h=50ddaf88f37501e4018bdb9a5dad96e59a70d8bd;hb=7a050afbba1b2daf9a1ab6d6c4bbae9ba674a705;hp=9b2d87063085e56846a6ac6f5ffdebef4260487c;hpb=3cdfbd27dfc8dd15619f127ae78bf0f71b27dd6d;p=yaz-moved-to-github.git diff --git a/client/admin.c b/client/admin.c index 9b2d870..50ddaf8 100644 --- a/client/admin.c +++ b/client/admin.c @@ -1,8 +1,6 @@ -/* - * Copyright (C) 1995-2007, Index Data ApS +/* This file is part of the YAZ toolkit. + * Copyright (C) 1995-2008 Index Data * See the file LICENSE for details. - * - * $Id: admin.c,v 1.25 2007-04-16 21:53:08 adam Exp $ */ #include @@ -47,7 +45,7 @@ int sendAdminES(int type, char* param1) Z_APDU *apdu = zget_APDU(out, Z_APDU_extendedServicesRequest ); Z_ExtendedServicesRequest *req = apdu->u.extendedServicesRequest; Z_External *r; - int *oid; + Odr_oid *oid; Z_ESAdminOriginPartToKeep *toKeep; Z_ESAdminOriginPartNotToKeep *notToKeep; printf ("Admin request\n"); @@ -238,8 +236,14 @@ int cmd_adm_import(const char *arg) oct->len = oct->size = status.st_size; oct->buf = (unsigned char *) odr_malloc (out, oct->size); - fread (oct->buf, 1, oct->size, inf); - fclose (inf); + if (fread(oct->buf, 1, oct->size, inf) != oct->size) + { + printf("Incomplete read of file %s\n", fname); + } + if (fclose(inf)) + { + printf("Close failed for file %s\n", fname); + } segment->segmentRecords[segment->num_segmentRecords++] = rec;