Implement OFPC_FRAG_DROP fragment handling policy.
[sliver-openvswitch.git] / lib / buffer.c
index 1abe240..3dfd41a 100644 (file)
@@ -31,6 +31,7 @@
  * derivatives without specific, written prior permission.
  */
 
+#include <config.h>
 #include "buffer.h"
 #include <assert.h>
 #include <stdlib.h>
@@ -212,7 +213,7 @@ buffer_push(struct buffer *b, const void *p, size_t size)
 }
 
 /* If 'b' contains at least 'offset + size' bytes of data, returns a pointer to
- * byte 'offset'.  Otherwise, returns a null pointers. */
+ * byte 'offset'.  Otherwise, returns a null pointer. */
 void *
 buffer_at(const struct buffer *b, size_t offset, size_t size) 
 {