From: Adam Dickmeiss Date: Sun, 6 Mar 2005 12:54:32 +0000 (+0000) Subject: For record update, open file in binary mode X-Git-Tag: YAZ.2.1.0~16 X-Git-Url: http://lists.indexdata.dk/?a=commitdiff_plain;h=5a63f1bd6974a0fdd748d48ac791a414528f432e;p=yaz-moved-to-github.git For record update, open file in binary mode --- diff --git a/client/client.c b/client/client.c index b062912..033aea1 100644 --- a/client/client.c +++ b/client/client.c @@ -2,7 +2,7 @@ * Copyright (C) 1995-2005, Index Data ApS * See the file LICENSE for details. * - * $Id: client.c,v 1.274 2005-02-25 17:03:41 adam Exp $ + * $Id: client.c,v 1.275 2005-03-06 12:54:32 adam Exp $ */ #include @@ -2085,7 +2085,7 @@ static int cmd_update_common(const char *arg, int version) FILE *inf; struct stat status; stat (fname, &status); - if (S_ISREG(status.st_mode) && (inf = fopen(fname, "r"))) + if (S_ISREG(status.st_mode) && (inf = fopen(fname, "rb"))) { size_t len = status.st_size; char *buf = (char *) xmalloc (len);