svn2cvs down? was: svn commit: r193282 - stable/7/sys/libkern

Peter Wemm peter at wemm.org
Tue Jun 2 22:01:48 UTC 2009


On Tue, Jun 2, 2009 at 5:06 AM, John Hay <jhay at meraka.org.za> wrote:
> Hi Guys,
>
> Is there something wrong with the svn to cvs gateway? At least this
> commit has not pitched on the cvs side. Who should one contact about
> it?
>
> John
> --
> John Hay -- John.Hay at meraka.csir.co.za / jhay at FreeBSD.org
>
> On Mon, Jun 01, 2009 at 10:09:42PM +0000, Kip Macy wrote:
>> Author: kmacy
>> Date: Mon Jun  1 22:09:42 2009
>> New Revision: 193282
>> URL: http://svn.freebsd.org/changeset/base/193282
>>
>> Log:
>>   memmove is defined in support.S on arm - don't compile in
>>
>> Modified:
>>   stable/7/sys/libkern/memmove.c
>>
>> Modified: stable/7/sys/libkern/memmove.c
>> ==============================================================================
>> --- stable/7/sys/libkern/memmove.c    Mon Jun  1 22:05:08 2009        (r193281)
>> +++ stable/7/sys/libkern/memmove.c    Mon Jun  1 22:09:42 2009        (r193282)
>> @@ -29,6 +29,7 @@ __FBSDID("$FreeBSD$");
>>
>>  #include <sys/libkern.h>
>>
>> +#if !defined(__arm__)
>>  void *
>>  memmove(void *dest, const void *src, size_t n)
>>  {
>> @@ -36,3 +37,4 @@ memmove(void *dest, const void *src, siz
>>       bcopy(src, dest, n);
>>       return (dest);
>>  }
>> +#endif
>
>

It should be fixed now.  I fixed another problem with a
previously-missed revision as well.

-- 
Peter Wemm - peter at wemm.org; peter at FreeBSD.org; peter at yahoo-inc.com; KI6FJV
"All of this is for nothing if we don't go to the stars" - JMS/B5
"If Java had true garbage collection, most programs would delete
themselves upon execution." -- Robert Sewell


More information about the svn-src-stable-7 mailing list