--------------------- PatchSet 596 Date: 2000/09/18 00:16:38 Author: hno Branch: hno-devel Tag: (none) Log: Cosmetic fix to make the warning about closing a open filedescriptor a bit more readable (include description). Members: src/fd.c:1.1.1.3.10.2->1.1.1.3.10.2.2.1 Index: squid/src/fd.c =================================================================== RCS file: /cvsroot/squid-sf//squid/src/fd.c,v retrieving revision 1.1.1.3.10.2 retrieving revision 1.1.1.3.10.2.2.1 diff -u -r1.1.1.3.10.2 -r1.1.1.3.10.2.2.1 --- squid/src/fd.c 20 Apr 2000 18:14:22 -0000 1.1.1.3.10.2 +++ squid/src/fd.c 18 Sep 2000 00:16:38 -0000 1.1.1.3.10.2.2.1 @@ -1,6 +1,6 @@ /* - * $Id: fd.c,v 1.1.1.3.10.2 2000/04/20 18:14:22 hno Exp $ + * $Id: fd.c,v 1.1.1.3.10.2.2.1 2000/09/18 00:16:38 hno Exp $ * * DEBUG: section 51 Filedescriptor Functions * AUTHOR: Duane Wessels @@ -96,7 +96,7 @@ fde *F = &fd_table[fd]; assert(fd >= 0); if (F->flags.open) { - debug(51, 1) ("WARNING: Closing open FD %4d\n", fd); + debug(51, 1) ("WARNING: Closing open FD %4d (%s)\n", fd, F->desc); fd_close(fd); } assert(!F->flags.open);