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

Diff for /src/usr.bin/sndiod/sndiod.c between version 1.28 and 1.29

version 1.28, 2016/01/08 16:17:31 version 1.29, 2016/01/09 08:57:34
Line 251 
Line 251 
         sa.sa_flags = SA_RESTART;          sa.sa_flags = SA_RESTART;
         sa.sa_handler = SIG_DFL;          sa.sa_handler = SIG_DFL;
         if (sigaction(SIGHUP, &sa, NULL) < 0)          if (sigaction(SIGHUP, &sa, NULL) < 0)
                 err(1, "unsetsig(hup): sigaction failed\n");                  err(1, "unsetsig(hup): sigaction failed");
         if (sigaction(SIGTERM, &sa, NULL) < 0)          if (sigaction(SIGTERM, &sa, NULL) < 0)
                 err(1, "unsetsig(term): sigaction failed\n");                  err(1, "unsetsig(term): sigaction failed");
         if (sigaction(SIGINT, &sa, NULL) < 0)          if (sigaction(SIGINT, &sa, NULL) < 0)
                 err(1, "unsetsig(int): sigaction failed\n");                  err(1, "unsetsig(int): sigaction failed");
 }  }
   
 void  void

Legend:
Removed from v.1.28  
changed lines
  Added in v.1.29