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

Diff for /src/usr.bin/aucat/Attic/listen.c between version 1.9 and 1.10

version 1.9, 2009/07/25 08:44:27 version 1.10, 2009/07/25 10:52:19
Line 29 
Line 29 
 #include <unistd.h>  #include <unistd.h>
   
 #include "conf.h"  #include "conf.h"
 #include "sock.h"  
 #include "listen.h"  #include "listen.h"
   #include "sock.h"
   
 struct fileops listen_ops = {  struct fileops listen_ops = {
         "listen",          "listen",
Line 138 
Line 138 
 {  {
         struct listen *f = (struct listen *)file;          struct listen *f = (struct listen *)file;
   
         (void)unlink(f->path);          unlink(f->path);
         free(f->path);          free(f->path);
         (void)close(f->fd);          close(f->fd);
 }  }

Legend:
Removed from v.1.9  
changed lines
  Added in v.1.10