/*
- * $Id: store_swapout.cc,v 1.22 1998/07/22 20:54:04 wessels Exp $
+ * $Id: store_swapout.cc,v 1.23 1998/08/19 04:32:14 wessels Exp $
*
* DEBUG: section 20 Storage Manager Swapout Functions
* AUTHOR: Duane Wessels
}
assert(e->swap_status == SWAPOUT_OPENING);
if (fd < 0) {
- debug(20, 0) ("storeSwapOutFileOpened: Unable to open swapfile: %s\n",
- ctrlp->swapfilename);
+ debug(20, 0) ("storeSwapOutFileOpened: Unable to open swapfile: %s\n\t%s\n",
+ ctrlp->swapfilename, xstrerror());
storeDirMapBitReset(e->swap_file_number);
e->swap_file_number = -1;
e->swap_status = ctrlp->oldswapstatus;
/*
- * $Id: url.cc,v 1.105 1998/08/17 23:49:56 wessels Exp $
+ * $Id: url.cc,v 1.106 1998/08/19 04:32:15 wessels Exp $
*
* DEBUG: section 23 URL Parsing
* AUTHOR: Duane Wessels
if ((l = strlen(url)) + Config.appendDomainLen > (MAX_URL - 1)) {
/* terminate so it doesn't overflow other buffers */
*(url + (MAX_URL >> 1)) = '\0';
- debug(23, 0) ("urlParse: URL too large (%d bytes)\n", l);
+ debug(23, 1) ("urlParse: URL too large (%d bytes)\n", l);
return NULL;
}
if (method == METHOD_CONNECT) {