[BACK]Return to aucat.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / aucat

Diff for /src/usr.bin/aucat/aucat.c between version 1.52 and 1.53

version 1.52, 2009/01/23 17:38:15 version 1.53, 2009/01/23 17:52:13
Line 491 
Line 491 
         sa.sa_handler = sigint;          sa.sa_handler = sigint;
         if (sigaction(SIGINT, &sa, NULL) < 0)          if (sigaction(SIGINT, &sa, NULL) < 0)
                 DPRINTF("sigaction(int) failed\n");                  DPRINTF("sigaction(int) failed\n");
           if (sigaction(SIGTERM, &sa, NULL) < 0)
                   DPRINTF("sigaction(term) failed\n");
           if (sigaction(SIGHUP, &sa, NULL) < 0)
                   DPRINTF("sigaction(hup) failed\n");
 #ifdef DEBUG  #ifdef DEBUG
         sa.sa_handler = sigusr1;          sa.sa_handler = sigusr1;
         if (sigaction(SIGUSR1, &sa, NULL) < 0)          if (sigaction(SIGUSR1, &sa, NULL) < 0)

Legend:
Removed from v.1.52  
changed lines
  Added in v.1.53