Index: /trunk/xcache.c
===================================================================
--- /trunk/xcache.c	(revision 119)
+++ /trunk/xcache.c	(revision 120)
@@ -257,8 +257,8 @@
 #define XC_CACHE_APPLY_FUNC(name) void name(xc_cache_t *cache TSRMLS_DC)
 /* call graph:
- * xc_php_gc_expires -> xc_gc_expires_var_one -> xc_entry_apply_dmz -> xc_gc_php_entry_expires_dmz
- * xc_var_gc_expires -> xc_gc_expires_one -> xc_entry_apply_dmz -> xc_gc_var_entry_expires_dmz
+ * xc_gc_expires_php -> xc_gc_expires_one -> xc_entry_apply_dmz -> xc_gc_expires_php_entry_dmz
+ * xc_gc_expires_var -> xc_gc_expires_one -> xc_entry_apply_dmz -> xc_gc_expires_var_entry_dmz
  */
-static XC_ENTRY_APPLY_FUNC(xc_gc_php_entry_expires_dmz) /* {{{ */
+static XC_ENTRY_APPLY_FUNC(xc_gc_expires_php_entry_dmz) /* {{{ */
 {
 #ifdef DEBUG
@@ -271,5 +271,5 @@
 }
 /* }}} */
-static XC_ENTRY_APPLY_FUNC(xc_gc_var_entry_expires_dmz) /* {{{ */
+static XC_ENTRY_APPLY_FUNC(xc_gc_expires_var_entry_dmz) /* {{{ */
 {
 	if (VAR_ENTRY_EXPIRED(entry)) {
@@ -294,5 +294,5 @@
 }
 /* }}} */
-static void xc_php_gc_expires(TSRMLS_D) /* {{{ */
+static void xc_gc_expires_php(TSRMLS_D) /* {{{ */
 {
 	int i, c;
@@ -303,9 +303,9 @@
 
 	for (i = 0, c = xc_php_hcache.size; i < c; i ++) {
-		xc_gc_expires_one(xc_php_caches[i], xc_php_gc_interval, xc_gc_php_entry_expires_dmz TSRMLS_CC);
-	}
-}
-/* }}} */
-static void xc_var_gc_expires(TSRMLS_D) /* {{{ */
+		xc_gc_expires_one(xc_php_caches[i], xc_php_gc_interval, xc_gc_expires_php_entry_dmz TSRMLS_CC);
+	}
+}
+/* }}} */
+static void xc_gc_expires_var(TSRMLS_D) /* {{{ */
 {
 	int i, c;
@@ -316,5 +316,5 @@
 
 	for (i = 0, c = xc_var_hcache.size; i < c; i ++) {
-		xc_gc_expires_one(xc_var_caches[i], xc_var_gc_interval, xc_gc_var_entry_expires_dmz TSRMLS_CC);
+		xc_gc_expires_one(xc_var_caches[i], xc_var_gc_interval, xc_gc_expires_var_entry_dmz TSRMLS_CC);
 	}
 }
@@ -1262,6 +1262,6 @@
 {
 	xc_entry_unholds(TSRMLS_C);
-	xc_php_gc_expires(TSRMLS_C);
-	xc_var_gc_expires(TSRMLS_C);
+	xc_gc_expires_php(TSRMLS_C);
+	xc_gc_expires_var(TSRMLS_C);
 	xc_gc_deletes(TSRMLS_C);
 #ifdef HAVE_XCACHE_COVERAGER
