You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by yl...@apache.org on 2020/05/28 20:31:10 UTC

svn commit: r1878248 - /httpd/httpd/trunk/.gdbinit

Author: ylavic
Date: Thu May 28 20:31:09 2020
New Revision: 1878248

URL: http://svn.apache.org/viewvc?rev=1878248&view=rev
Log:
.gdbinit: fix copy/paste dup [skip ci]

Modified:
    httpd/httpd/trunk/.gdbinit

Modified: httpd/httpd/trunk/.gdbinit
URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/.gdbinit?rev=1878248&r1=1878247&r2=1878248&view=diff
==============================================================================
--- httpd/httpd/trunk/.gdbinit (original)
+++ httpd/httpd/trunk/.gdbinit Thu May 28 20:31:09 2020
@@ -539,13 +539,13 @@ class DumpPoolAndChilds (gdb.Command):
     while c:
         c_num = c_num + 1
         dc = c.dereference()
-        print("%s  pre_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['plain_cleanup_fn'].dereference()))
+        print("%s  pre_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['child_cleanup_fn'].dereference()))
         c = dc['next']
     c = darg['cleanups']
     while c:
         c_num = c_num + 1
         dc = c.dereference()
-        print("%s  pst_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['plain_cleanup_fn'].dereference()))
+        print("%s  pst_cleanup #%.2i: data = %s, plain_cleanup_fn = %s, child_cleanup_fn = %s" % (indent, c_num, dc['data'], dc['plain_cleanup_fn'].dereference(), dc['child_cleanup_fn'].dereference()))
         c = dc['next']
 
   def _dump(self, arg, depth):