~ubuntu-branches/ubuntu/quantal/apt-cacher-ng/quantal-backports

« back to all changes in this revision

Viewing changes to source/apt-cacher.cc

  • Committer: Bazaar Package Importer
  • Author(s): Eduard Bloch
  • Date: 2011-08-01 23:40:11 UTC
  • mfrom: (1.1.29 upstream) (29.1.13 sid)
  • Revision ID: james.westby@ubuntu.com-20110801234011-2ouft5pay71773vs
Tags: 0.6.4-1
* New upstream version
  + fixes potential pipeline freeze (closes: #628995)
  + supports "soft" blacklisting of bad hosts when important files are
    missing (see keyfile in documentation, closes: #616091)

Show diffs side-by-side

added added

removed removed

Lines of Context:
70
70
        struct sigaction act;
71
71
        memset(&act, 0, sizeof(act));
72
72
 
 
73
        sigfillset(&act.sa_mask);
73
74
        act.sa_handler = &term_handler;
74
75
        sigaction(SIGTERM, &act, NULL);
75
76
        sigaction(SIGINT, &act, NULL);