~ubuntu-branches/ubuntu/jaunty/squid3/jaunty-security

« back to all changes in this revision

Viewing changes to src/dnsserver.cc

  • Committer: Bazaar Package Importer
  • Author(s): Luigi Gangitano
  • Date: 2008-07-21 09:20:31 UTC
  • mfrom: (1.1.7 upstream) (3.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20080721092031-bj8vog645lw6487u
Tags: 3.0.STABLE8-1
* Urgency high to meet freeze deadline

* New upstream release

* debian/patches/10-mgr_active_requests
  - Added upstream patch fixing delay_pool reporting in cachemgr.cgi

Show diffs side-by-side

added added

removed removed

Lines of Context:
399
399
    for (;;) {
400
400
        memset(request, '\0', REQ_SZ);
401
401
 
402
 
        if (fgets(request, REQ_SZ, stdin) == NULL)
403
 
            exit(1);
 
402
        if (fgets(request, REQ_SZ, stdin) == NULL) {
 
403
#ifdef _SQUID_MSWIN_
 
404
            WSACleanup();
 
405
#endif
 
406
            exit(1);
 
407
        }
404
408
 
405
409
        t = strrchr(request, '\n');
406
410