Date: Thu, 20 Nov 2008 08:32:19 +0000 (UTC) From: Warner Losh <imp@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r185125 - head/usr.sbin/dumpcis Message-ID: <200811200832.mAK8WJ6j044923@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: imp Date: Thu Nov 20 08:32:19 2008 New Revision: 185125 URL: http://svn.freebsd.org/changeset/base/185125 Log: damn. Always do make depend. Forgot to recompile main because of it, so the changes for the struct cis -> struct tuple_list didn't get made. They have been now. Modified: head/usr.sbin/dumpcis/main.c Modified: head/usr.sbin/dumpcis/main.c ============================================================================== --- head/usr.sbin/dumpcis/main.c Thu Nov 20 08:30:15 2008 (r185124) +++ head/usr.sbin/dumpcis/main.c Thu Nov 20 08:32:19 2008 (r185125) @@ -34,17 +34,17 @@ static void scanfile(char *name) { int fd; - struct cis *cp; + struct tuple_list *tl; fd = open(name, O_RDONLY); if (fd < 0) return; - cp = readcis(fd); - if (cp) { + tl = readcis(fd); + if (tl) { printf("Configuration data for file %s\n", name); - dumpcis(cp); - freecis(cp); + dumpcis(tl); + freecis(tl); } close(fd); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200811200832.mAK8WJ6j044923>