gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r37013 - libmicrohttpd/src/microhttpd


From: gnunet
Subject: [GNUnet-SVN] r37013 - libmicrohttpd/src/microhttpd
Date: Sun, 10 Apr 2016 22:24:40 +0200

Author: Karlson2k
Date: 2016-04-10 22:24:40 +0200 (Sun, 10 Apr 2016)
New Revision: 37013

Modified:
   libmicrohttpd/src/microhttpd/connection.c
   libmicrohttpd/src/microhttpd/daemon.c
   libmicrohttpd/src/microhttpd/internal.c
   libmicrohttpd/src/microhttpd/internal.h
   libmicrohttpd/src/microhttpd/memorypool.c
   libmicrohttpd/src/microhttpd/memorypool.h
   libmicrohttpd/src/microhttpd/response.c
Log:
Corrected typos in comments

Modified: libmicrohttpd/src/microhttpd/connection.c
===================================================================
--- libmicrohttpd/src/microhttpd/connection.c   2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/connection.c   2016-04-10 20:24:40 UTC (rev 
37013)
@@ -1178,7 +1178,7 @@
  * perform other updates to the connection if needed to prepare for
  * the next round of the event loop.
  *
- * @param connection connetion to get poll set for
+ * @param connection connection to get poll set for
  */
 static void
 MHD_connection_update_event_loop_info (struct MHD_Connection *connection)
@@ -1997,7 +1997,7 @@
         memory; however, doing this right gets tricky if we have a
         value continued over multiple lines (in which case we need to
         record how often we have done this so we can check for
-        adjaency); also, in the case where these are not adjacent
+        adjacency); also, in the case where these are not adjacent
         (not sure how it can happen!), we would want to allocate from
         the end of the pool, so as to not destroy the read-buffer's
         ability to grow nicely. */

Modified: libmicrohttpd/src/microhttpd/daemon.c
===================================================================
--- libmicrohttpd/src/microhttpd/daemon.c       2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/daemon.c       2016-04-10 20:24:40 UTC (rev 
37013)
@@ -2150,7 +2150,7 @@
  * @param timeout set to the timeout (in milliseconds)
  * @return #MHD_YES on success, #MHD_NO if timeouts are
  *        not used (or no connections exist that would
- *        necessiate the use of a timeout right now).
+ *        necessitate the use of a timeout right now).
  * @ingroup event
  */
 int
@@ -2941,7 +2941,7 @@
     }
   /* Connections with the default timeout are sorted by prepending
      them to the head of the list whenever we touch the connection;
-     thus it sufficies to iterate from the tail until the first
+     thus it suffices to iterate from the tail until the first
      connection is NOT timed out */
   next = daemon->normal_timeout_tail;
   while (NULL != (pos = next))

Modified: libmicrohttpd/src/microhttpd/internal.c
===================================================================
--- libmicrohttpd/src/microhttpd/internal.c     2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/internal.c     2016-04-10 20:24:40 UTC (rev 
37013)
@@ -105,7 +105,7 @@
 
 
 /**
- * Convert all occurences of '+' to ' '.
+ * Convert all occurrences of '+' to ' '.
  *
  * @param arg string that is modified (in place), must be 0-terminated
  */

Modified: libmicrohttpd/src/microhttpd/internal.h
===================================================================
--- libmicrohttpd/src/microhttpd/internal.h     2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/internal.h     2016-04-10 20:24:40 UTC (rev 
37013)
@@ -1451,7 +1451,7 @@
 
 
 /**
- * Convert all occurences of '+' to ' '.
+ * Convert all occurrences of '+' to ' '.
  *
  * @param arg string that is modified (in place), must be 0-terminated
  */

Modified: libmicrohttpd/src/microhttpd/memorypool.c
===================================================================
--- libmicrohttpd/src/microhttpd/memorypool.c   2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/memorypool.c   2016-04-10 20:24:40 UTC (rev 
37013)
@@ -191,7 +191,7 @@
  * Reallocate a block of memory obtained from the pool.
  * This is particularly efficient when growing or
  * shrinking the block that was last (re)allocated.
- * If the given block is not the most recenlty
+ * If the given block is not the most recently
  * (re)allocated block, the memory of the previous
  * allocation may be leaked until the pool is
  * destroyed (and copying the data maybe required).

Modified: libmicrohttpd/src/microhttpd/memorypool.h
===================================================================
--- libmicrohttpd/src/microhttpd/memorypool.h   2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/memorypool.h   2016-04-10 20:24:40 UTC (rev 
37013)
@@ -77,7 +77,7 @@
  * Reallocate a block of memory obtained from the pool.
  * This is particularly efficient when growing or
  * shrinking the block that was last (re)allocated.
- * If the given block is not the most recenlty
+ * If the given block is not the most recently
  * (re)allocated block, the memory of the previous
  * allocation may be leaked until the pool is
  * destroyed (and copying the data maybe required).

Modified: libmicrohttpd/src/microhttpd/response.c
===================================================================
--- libmicrohttpd/src/microhttpd/response.c     2016-04-10 19:12:37 UTC (rev 
37012)
+++ libmicrohttpd/src/microhttpd/response.c     2016-04-10 20:24:40 UTC (rev 
37013)
@@ -567,7 +567,7 @@
  * Destroy a response object and associated resources.  Note that
  * libmicrohttpd may keep some of the resources around if the response
  * is still in the queue for some clients, so the memory may not
- * necessarily be freed immediatley.
+ * necessarily be freed immediately.
  *
  * @param response response to destroy
  * @ingroup response




reply via email to

[Prev in Thread] Current Thread [Next in Thread]