=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/aucat/Attic/listen.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -r1.9 -r1.10 --- src/usr.bin/aucat/Attic/listen.c 2009/07/25 08:44:27 1.9 +++ src/usr.bin/aucat/Attic/listen.c 2009/07/25 10:52:19 1.10 @@ -1,4 +1,4 @@ -/* $OpenBSD: listen.c,v 1.9 2009/07/25 08:44:27 ratchov Exp $ */ +/* $OpenBSD: listen.c,v 1.10 2009/07/25 10:52:19 ratchov Exp $ */ /* * Copyright (c) 2008 Alexandre Ratchov * @@ -29,8 +29,8 @@ #include #include "conf.h" -#include "sock.h" #include "listen.h" +#include "sock.h" struct fileops listen_ops = { "listen", @@ -138,7 +138,7 @@ { struct listen *f = (struct listen *)file; - (void)unlink(f->path); + unlink(f->path); free(f->path); - (void)close(f->fd); + close(f->fd); }