diff -u nbd-2.8.3/debian/changelog nbd-2.8.3/debian/changelog --- nbd-2.8.3/debian/changelog +++ nbd-2.8.3/debian/changelog @@ -1,3 +1,13 @@ +nbd (1:2.8.3-1ubuntu1) dapper-updates; urgency=low + + * Grab one-liner from Debian's 1:2.8.3-2 to fix the case where the + server socket has been closed for the child, upon which the child + spins accept()ing, leading to an infinite loop resulting in + logfiles exploding in size (see Debian: #350357). + (Closes Ubuntu: #49839) + + -- Daniel T Chen Fri, 16 Jun 2006 03:25:23 -0400 + nbd (1:2.8.3-1) unstable; urgency=low * New upstream release; this one includes the fix for CVE-2005-3534 (and only in patch2: unchanged: --- nbd-2.8.3.orig/nbd-server.c +++ nbd-2.8.3/nbd-server.c @@ -987,6 +987,7 @@ #endif // NOFORK msg2(LOG_INFO,"Starting to serve") ; serveconnection(client); + return 0; } }