Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 31 May 2010 20:20:05 GMT
From:      dfilter@FreeBSD.ORG (dfilter service)
To:        freebsd-geom@FreeBSD.org
Subject:   Re: kern/142174: commit references a PR
Message-ID:  <201005312020.o4VKK5Ff023511@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/142174; it has been noted by GNATS.

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@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@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/svn-src-all
 To unsubscribe, send any mail to "svn-src-all-unsubscribe@freebsd.org"
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201005312020.o4VKK5Ff023511>