bin/177871: commit references a PR
dfilter service
dfilter at FreeBSD.ORG
Mon Apr 22 05:30:01 UTC 2013
The following reply was made to PR bin/177871; it has been noted by GNATS.
From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:
Subject: Re: bin/177871: commit references a PR
Date: Mon, 22 Apr 2013 05:27:21 +0000 (UTC)
Author: adrian
Date: Mon Apr 22 05:27:13 2013
New Revision: 249747
URL: http://svnweb.freebsd.org/changeset/base/249747
Log:
Initialise this to zero before using it to configure the vlangroup
information.
PR: kern/177871
Submitted by: Luiz Otavio O Souza <loos.br at gmail.com>
Modified:
head/sbin/etherswitchcfg/etherswitchcfg.c
Modified: head/sbin/etherswitchcfg/etherswitchcfg.c
==============================================================================
--- head/sbin/etherswitchcfg/etherswitchcfg.c Mon Apr 22 05:02:34 2013 (r249746)
+++ head/sbin/etherswitchcfg/etherswitchcfg.c Mon Apr 22 05:27:13 2013 (r249747)
@@ -139,6 +139,7 @@ set_port_vlangroup(struct cfg *cfg, char
v = strtol(argv[1], NULL, 0);
if (v < 0 || v >= cfg->info.es_nvlangroups)
errx(EX_USAGE, "vlangroup must be between 0 and %d", cfg->info.es_nvlangroups-1);
+ bzero(&p, sizeof(p));
p.es_port = cfg->unit;
if (ioctl(cfg->fd, IOETHERSWITCHGETPORT, &p) != 0)
err(EX_OSERR, "ioctl(IOETHERSWITCHGETPORT)");
_______________________________________________
svn-src-all at freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscribe at freebsd.org"
More information about the freebsd-embedded
mailing list