From 974bfa0782d7cb42db72fe758aff8a9ba1520297 Mon Sep 17 00:00:00 2001 From: Patrick Pelletier Date: Thu, 7 Feb 2013 17:14:18 -0800 Subject: [PATCH 1/2] remove all exes on "make clean", not just regress.exe --- test/Makefile.nmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.nmake b/test/Makefile.nmake index f33ca530..09b9e879 100644 --- a/test/Makefile.nmake +++ b/test/Makefile.nmake @@ -69,4 +69,4 @@ regress.gen.c regress.gen.h: regress.rpc ../event_rpcgen.py clean: -del $(REGRESS_OBJS) -del $(OTHER_OBJS) - -del regress.exe + -del $(PROGRAMS) From a452811e41807bd1b3cc3b9e679f5142fd3e2d04 Mon Sep 17 00:00:00 2001 From: Patrick Pelletier Date: Wed, 30 Jan 2013 16:07:30 -0800 Subject: [PATCH 2/2] "buffer" spelling --- whatsnew-2.0.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/whatsnew-2.0.txt b/whatsnew-2.0.txt index be0c71bc..3561fcb9 100644 --- a/whatsnew-2.0.txt +++ b/whatsnew-2.0.txt @@ -358,7 +358,7 @@ What's New In Libevent 2.0 so far: any means provided to create an evbuffer except via evbuffer_new which heap-allocated the buffer. - If you need access to the whole bufer as a linear chunk of memory, the + If you need access to the whole buffer as a linear chunk of memory, the EVBUFFER_DATA() function still works. Watch out, though: it needs to copy the buffer's contents in a linear chunk before you can use it.