libctf: remove outdated comment about parent dict importing
authorNick Alcock <nick.alcock@oracle.com>
Tue, 5 Jan 2021 13:25:56 +0000 (13:25 +0000)
committerNick Alcock <nick.alcock@oracle.com>
Tue, 5 Jan 2021 14:53:40 +0000 (14:53 +0000)
Parent dicts are nowadays imported automatically in most situations, so
the comment in ctf_archive_iter warning people that they need to import
parents by hand is wrong.  Remove it.

libctf/ChangeLog
2021-01-05  Nick Alcock  <nick.alcock@oracle.com>

* ctf-archive.c (ctf_archive_iter): Remove outdated comment.

libctf/ChangeLog
libctf/ctf-archive.c

index 57507c4ba3f7caeab75cef1408b75b2d6dfd879a..b5a89b1a75cee26dc4dbc865f4e567c79b92b8f7 100644 (file)
@@ -1,3 +1,7 @@
+2021-01-05  Nick Alcock  <nick.alcock@oracle.com>
+
+       * ctf-archive.c (ctf_archive_iter): Remove outdated comment.
+
 2021-01-05  Nick Alcock  <nick.alcock@oracle.com>
 
        * ctf-impl.h (struct ctf_next) <u.ctn_next>: Move to...
index d8c4845b643b93287036c6f2d535430b03c3f04a..193fc4df5749e090d418079a3aa8b902bcda2c5a 100644 (file)
@@ -1021,9 +1021,7 @@ ctf_archive_iter (const ctf_archive_t *arc, ctf_archive_member_f *func,
 
 /* Iterate over all CTF files in an archive, returning each dict in turn as a
    ctf_dict_t, and NULL on error or end of iteration.  It is the caller's
-   responsibility to close it.  Parent dicts may be skipped.  Regardless of
-   whether they are skipped or not, the caller must ctf_import the parent if
-   need be.
+   responsibility to close it.  Parent dicts may be skipped.
 
    The archive member is cached for rapid return on future calls.