Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 17 Jan 2018 13:19:38 +0000 (UTC)
From:      Dimitry Andric <dim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r328084 - head/sbin/fsdb
Message-ID:  <201801171319.w0HDJcEL081479@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@walstatt.org,david@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.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201801171319.w0HDJcEL081479>