[patch] remove old comment from src/IO/IO.c
| Newsgroups | gmane.comp.web.dillo.devel |
|---|---|
| Message-ID | <20130202013917.GA2555@darkstar> |
There is an outdated comment in src/IO/IO.c. hg blame src/IO/IO.c also shows that it is older than the code. This patch removes comment. #defines are similar to SHUT_RD, SHUT_WR and SHUT_RDWR, but shutdown is not used: code just dCloses descriptor when both sides are asked to be closed. _______________________________________________ Dillo-dev mailing list [email protected] http://lists.auriga.wearlab.de/cgi-bin/mailman/listinfo/dillo-dev
io.old.comment.patch
(text/plain, 450 B)
# HG changeset patch # Parent a04f18263f53c0ed502cbaabd3918743da65cd52 Remove old comment from src/IO/IO.c. diff -r a04f18263f53 src/IO/IO.c --- a/src/IO/IO.c +++ b/src/IO/IO.c @@ -22,10 +22,6 @@ #include "IO.h" #include "iowatch.hh" -/* - * Symbolic defines for shutdown() function - * (Not defined in the same header file, for all distros --Jcid) - */ #define IO_StopRd 1 #define IO_StopWr 2 #define IO_StopRdWr (IO_StopRd | IO_StopWr)