svn commit: r328084 - head/sbin/fsdb

Dimitry Andric dim at FreeBSD.org
Wed Jan 17 13:19:39 UTC 2018


Author: dim
Date: Wed Jan 17 13:19:37 2018
New Revision: 328084
URL: https://svnweb.freebsd.org/changeset/base/328084

Log:
  Fix buildworld after r328075, by also renaming cgget to cglookup in
  fsdb.
  
  Reported by:	ohartmann at walstatt.org,david at catwhisker.org
  Pointy hat to:	mckusick

Modified:
  head/sbin/fsdb/fsdb.c

Modified: head/sbin/fsdb/fsdb.c
==============================================================================
--- head/sbin/fsdb/fsdb.c	Wed Jan 17 11:44:21 2018	(r328083)
+++ head/sbin/fsdb/fsdb.c	Wed Jan 17 13:19:37 2018	(r328084)
@@ -476,7 +476,7 @@ CMDFUNCSTART(findblk)
 	 */
 	inum = c * sblock.fs_ipg;
 	/* Read cylinder group. */
-	cgbp = cgget(c);
+	cgbp = cglookup(c);
 	cgp = cgbp->b_un.b_cg;
 	/*
 	 * Get a highest used inode number for a given cylinder group.


More information about the svn-src-head mailing list