// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: acquire-worker.cc,v 1.26 1999/08/03 05:19:41 jgg Exp $
+// $Id: acquire-worker.cc,v 1.27 1999/08/28 01:49:56 jgg Exp $
/* ######################################################################
Acquire Worker
pkgAcquire::ItemDesc Desc = *Itm;
OwnerQ->ItemDone(Itm);
if (TotalSize != 0 &&
- atoi(LookupTag(Message,"Size","0").c_str()) != TotalSize)
+ (unsigned)atoi(LookupTag(Message,"Size","0").c_str()) != TotalSize)
_error->Warning("Bizzar Error - File size is not what the server reported %s %u",
LookupTag(Message,"Size","0").c_str(),TotalSize);
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: mmap.cc,v 1.17 1999/08/02 03:07:47 jgg Exp $
+// $Id: mmap.cc,v 1.18 1999/08/28 01:49:07 jgg Exp $
/* ######################################################################
MMap Class - Provides 'real' mmap or a faked mmap using read().
#include <fcntl.h>
/*}}}*/
+#undef _POSIX_SYNCHRONIZED_IO
+
// MMap::MMap - Constructor /*{{{*/
// ---------------------------------------------------------------------
/* */
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
-// $Id: strutl.cc,v 1.28 1999/08/02 03:07:48 jgg Exp $
+// $Id: strutl.cc,v 1.29 1999/08/28 01:49:08 jgg Exp $
/* ######################################################################
String Util - Some usefull string functions.
bool Hex2Num(const char *Start,const char *End,unsigned char *Num,
unsigned int Length)
{
- if (End - Start != Length*2)
+ if (End - Start != (signed)(Length*2))
return false;
// Convert each digit. We store it in the same order as the string