[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.95 and 1.96

version 1.95, 2010/06/20 11:32:54 version 1.96, 2010/06/25 07:32:05
Line 817 
Line 817 
   fatal:    fatal:
         if (l_flag)          if (l_flag)
                 file_close(&listen->file);                  file_close(&listen->file);
         while (dev_list)  
                 dev_del(dev_list);  
   
         /*          /*
          * give a chance to drain           * give a chance to drain
          */           */
           for (d = dev_list; d != NULL; d = d->next)
                   dev_drain(d);
         while (file_poll())          while (file_poll())
                 ; /* nothing */                  ; /* nothing */
   
           while (dev_list)
                   dev_del(dev_list);
         filelist_done();          filelist_done();
         if (l_flag) {          if (l_flag) {
                 if (rmdir(base) < 0 && errno != ENOTEMPTY && errno != EPERM)                  if (rmdir(base) < 0 && errno != ENOTEMPTY && errno != EPERM)

Legend:
Removed from v.1.95  
changed lines
  Added in v.1.96