]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
somethings weren't quite ok. Fixed now
authorMiek Gieben <miekg@NLnetLabs.nl>
Thu, 28 Apr 2005 10:44:18 +0000 (10:44 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Thu, 28 Apr 2005 10:44:18 +0000 (10:44 +0000)
ldns/buffer.h

index 85e1905c49ce8d3cca5da4fe68ea448f7183ac5d..c422c422625d3ed665e2a3a8685ec0bcc3fc30c2 100644 (file)
@@ -108,8 +108,11 @@ void ldns_buffer_clear(ldns_buffer *buffer);
  * makes the buffer ready for reading the data that has been written to
  * the buffer.  The buffer's limit is set to the current position and
  * the position is set to 0.
+ *
+ * \param[in] buffer the buffer to flip
+ * \return void
  */
-void lnds_buffer_flip(ldns_buffer *buffer);
+void ldns_buffer_flip(ldns_buffer *buffer);
 
 /**
  * make the buffer ready for re-reading the data.  The buffer's
@@ -490,8 +493,8 @@ ldns_buffer_status_ok(ldns_buffer *buffer)
  * '\0'. Returns the number of characters written (not including the
  * terminating '\0') or -1 on failure.
  */
-int ldns_buffer_printf(ldns_buffer *buffer, const char *format, ...)
-       ATTR_FORMAT(printf, 2, 3);
+int ldns_buffer_printf(ldns_buffer *buffer, const char *format, ...);
+/*     ATTR_FORMAT(printf, 2, 3);*/
 
 /**
  * frees the buffer.