svn commit: r327582 - head/usr.sbin/dumpcis

Li-Wen Hsu lwhsu at FreeBSD.org
Fri Jan 5 08:29:34 UTC 2018


Author: lwhsu (ports committer)
Date: Fri Jan  5 08:29:32 2018
New Revision: 327582
URL: https://svnweb.freebsd.org/changeset/base/327582

Log:
  Fix typo & build
  
  Approved by:	kevlo

Modified:
  head/usr.sbin/dumpcis/readcis.c

Modified: head/usr.sbin/dumpcis/readcis.c
==============================================================================
--- head/usr.sbin/dumpcis/readcis.c	Fri Jan  5 07:29:02 2018	(r327581)
+++ head/usr.sbin/dumpcis/readcis.c	Fri Jan  5 08:29:32 2018	(r327582)
@@ -336,9 +336,9 @@ ck_linktarget(int fd, off_t offs, int flag)
 {
 	char    blk[5];
 
-	if (ioctl(fd, PIOCRWFLAG, &flags) < 0)
+	if (ioctl(fd, PIOCRWFLAG, &flag) < 0)
 		err(1, "Setting flag to rad %s memory failed",
-		    flags ? "attribute" : "common");
+		    flag ? "attribute" : "common");
 	if (lseek(fd, offs, SEEK_SET) < 0)
 		err(1, "Unable to seek to memory offset %ju",
 		    (uintmax_t)offs);


More information about the svn-src-head mailing list