kern/142174: commit references a PR

dfilter service dfilter at FreeBSD.ORG
Mon May 31 20:20:06 UTC 2010


The following reply was made to PR kern/142174; it has been noted by GNATS.

From: dfilter at FreeBSD.ORG (dfilter service)
To: bug-followup at FreeBSD.org
Cc:  
Subject: Re: kern/142174: commit references a PR
Date: Mon, 31 May 2010 20:18:38 +0000 (UTC)

 Author: avg
 Date: Mon May 31 20:17:37 2010
 New Revision: 208673
 URL: http://svn.freebsd.org/changeset/base/208673
 
 Log:
   MFC r201374: g_part_gpt: Properly return the UUID represented by the alias
   
   PR:		kern/142174
   Approved by:	re (kib)
   Approved by:	marcel
 
 Modified:
   stable/8/sys/geom/part/g_part_gpt.c
 Directory Properties:
   stable/8/sys/   (props changed)
   stable/8/sys/amd64/include/xen/   (props changed)
   stable/8/sys/cddl/contrib/opensolaris/   (props changed)
   stable/8/sys/contrib/dev/acpica/   (props changed)
   stable/8/sys/contrib/pf/   (props changed)
   stable/8/sys/dev/xen/xenpci/   (props changed)
   stable/8/sys/geom/sched/   (props changed)
 
 Modified: stable/8/sys/geom/part/g_part_gpt.c
 ==============================================================================
 --- stable/8/sys/geom/part/g_part_gpt.c	Mon May 31 09:10:39 2010	(r208672)
 +++ stable/8/sys/geom/part/g_part_gpt.c	Mon May 31 20:17:37 2010	(r208673)
 @@ -354,7 +354,7 @@ gpt_parse_type(const char *type, struct 
  	for (uap = &gpt_uuid_alias_match[0]; uap->uuid; uap++) {
  		alias = g_part_alias_name(uap->alias);
  		if (!strcasecmp(type, alias)) {
 -			uuid = uap->uuid;
 +			*uuid = *uap->uuid;
  			return (0);
  		}
  	}
 _______________________________________________
 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-geom mailing list