Update two comments to refer to use the new list API names.
authorNeil Conway <neilc@samurai.com>
Fri, 16 Sep 2005 04:13:18 +0000 (04:13 +0000)
committerNeil Conway <neilc@samurai.com>
Fri, 16 Sep 2005 04:13:18 +0000 (04:13 +0000)
src/backend/utils/adt/varlena.c
src/backend/utils/cache/relcache.c

index e3194141ae05cf2c17bab2b2081ffb6ce511c066..4e99586e568f7cc2e830f847bc444f2b59383ecb 100644 (file)
@@ -1727,7 +1727,7 @@ textToQualifiedNameList(text *textval)
  *                        identifiers.
  * Outputs:
  *     namelist: filled with a palloc'd list of pointers to identifiers within
- *                       rawstring.  Caller should freeList() this even on error return.
+ *                       rawstring.  Caller should list_free() this even on error return.
  *
  * Returns TRUE if okay, FALSE if there is a syntax error in the string.
  *
index 85c29f76057c500a657a3f79318fe8cf6746757d..62941a818244938ac1ae4422f5e796c0f3f923d9 100644 (file)
@@ -2514,7 +2514,7 @@ CheckConstraintFetch(Relation relation)
  *
  * Since shared cache inval causes the relcache's copy of the list to go away,
  * we return a copy of the list palloc'd in the caller's context.  The caller
- * may freeList() the returned list after scanning it. This is necessary
+ * may list_free() the returned list after scanning it.        This is necessary
  * since the caller will typically be doing syscache lookups on the relevant
  * indexes, and syscache lookup could cause SI messages to be processed!
  *