Subject: CVS commit: src/sbin/vinum
To: None <source-changes@NetBSD.org>
From: Christos Zoulas <christos@netbsd.org>
List: source-changes
Date: 06/26/2005 22:36:55
Module Name:	src
Committed By:	christos
Date:		Sun Jun 26 22:36:55 UTC 2005

Modified Files:
	src/sbin/vinum: Makefile commands.c list.c v.c vext.h

Log Message:
This is the textbook example of why global variables are harmful. Fix multiple
shadowing warnings for variables with the same name used both in global and
local context. Really this needs either to rename all the global variables
something different (prefix them with gl_ or something) or even better get
rid of them altogether.


To generate a diff of this commit:
cvs rdiff -r1.2 -r1.3 src/sbin/vinum/Makefile src/sbin/vinum/v.c \
    src/sbin/vinum/vext.h
cvs rdiff -r1.3 -r1.4 src/sbin/vinum/commands.c src/sbin/vinum/list.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.