]> git.ipfire.org Git - thirdparty/ldns.git/commitdiff
prefixes
authorMiek Gieben <miekg@NLnetLabs.nl>
Mon, 27 Jun 2005 08:50:45 +0000 (08:50 +0000)
committerMiek Gieben <miekg@NLnetLabs.nl>
Mon, 27 Jun 2005 08:50:45 +0000 (08:50 +0000)
Changelog
ldns/buffer.h

index ac3119628a809f6c9b2ac306630b4b100b4b33e4..b4167bdf5ee8b5c6205ce7041a8bc114bf8561bf 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -1,6 +1,7 @@
        : 0.70: ldns-team
-       * ldns_pkt_get_section now returns copies from the rrlists
+       * [func] ldns_pkt_get_section now returns copies from the rrlists
          in the packet. This can be freed by the user program
+       * [code] added ldns_ prefixes to function from util.h
 
 
 
index af3446d39d84a1899d304438de7cfa029dfed7c8..f2f34cd53d222da55c9a18f1a20f342159ecd336 100644 (file)
@@ -31,7 +31,7 @@
 /**
  * LDNS implementation of buffers to ease operations
  */
-struct buffer
+struct ldns_struct_buffer
 {
        /** The current position used for reading/writing */ 
        size_t   _position;
@@ -51,7 +51,7 @@ struct buffer
        /** The current state of the buffer */
        ldns_status _status;
 };
-typedef struct buffer ldns_buffer;
+typedef struct ldns_struct_buffer ldns_buffer;
 
 
 #ifdef NDEBUG