Date: Sun, 2 Jun 2013 09:43:49 +0000 (UTC) From: Gabor Kovesdan <gabor@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r251245 - head/usr.bin/sort Message-ID: <201306020943.r529hnk4004528@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: gabor Date: Sun Jun 2 09:43:48 2013 New Revision: 251245 URL: http://svnweb.freebsd.org/changeset/base/251245 Log: - Update Oleg Moskalenko's email address Requested by: Oleg Moskalenko <mom040267@gmail.com> Modified: head/usr.bin/sort/bwstring.c head/usr.bin/sort/bwstring.h head/usr.bin/sort/coll.c head/usr.bin/sort/coll.h head/usr.bin/sort/file.c head/usr.bin/sort/file.h head/usr.bin/sort/mem.c head/usr.bin/sort/mem.h head/usr.bin/sort/radixsort.c head/usr.bin/sort/radixsort.h head/usr.bin/sort/sort.1.in head/usr.bin/sort/sort.c head/usr.bin/sort/sort.h head/usr.bin/sort/vsort.c head/usr.bin/sort/vsort.h Modified: head/usr.bin/sort/bwstring.c ============================================================================== --- head/usr.bin/sort/bwstring.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/bwstring.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,6 +1,6 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/bwstring.h ============================================================================== --- head/usr.bin/sort/bwstring.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/bwstring.h Sun Jun 2 09:43:48 2013 (r251245) @@ -2,7 +2,7 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/coll.c ============================================================================== --- head/usr.bin/sort/coll.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/coll.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,6 +1,6 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/coll.h ============================================================================== --- head/usr.bin/sort/coll.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/coll.h Sun Jun 2 09:43:48 2013 (r251245) @@ -2,7 +2,7 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/file.c ============================================================================== --- head/usr.bin/sort/file.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/file.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,6 +1,6 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/file.h ============================================================================== --- head/usr.bin/sort/file.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/file.h Sun Jun 2 09:43:48 2013 (r251245) @@ -2,7 +2,7 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/mem.c ============================================================================== --- head/usr.bin/sort/mem.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/mem.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,6 +1,6 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/mem.h ============================================================================== --- head/usr.bin/sort/mem.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/mem.h Sun Jun 2 09:43:48 2013 (r251245) @@ -2,7 +2,7 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/radixsort.c ============================================================================== --- head/usr.bin/sort/radixsort.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/radixsort.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,5 +1,5 @@ /*- - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * Copyright (C) 2012 Gabor Kovesdan <gabor@FreeBSD.org> * All rights reserved. * Modified: head/usr.bin/sort/radixsort.h ============================================================================== --- head/usr.bin/sort/radixsort.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/radixsort.h Sun Jun 2 09:43:48 2013 (r251245) @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /*- - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * Copyright (C) 2012 Gabor Kovesdan <gabor@FreeBSD.org> * All rights reserved. * Modified: head/usr.bin/sort/sort.1.in ============================================================================== --- head/usr.bin/sort/sort.1.in Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/sort.1.in Sun Jun 2 09:43:48 2013 (r251245) @@ -612,7 +612,7 @@ command first appeared in .Sh AUTHORS Gabor Kovesdan <gabor@FreeBSD.org>, .Pp -Oleg Moskalenko <oleg.moskalenko@citrix.com> +Oleg Moskalenko <mom040267@gmail.com> .Sh NOTES This implementation of .Nm Modified: head/usr.bin/sort/sort.c ============================================================================== --- head/usr.bin/sort/sort.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/sort.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,6 +1,6 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/sort.h ============================================================================== --- head/usr.bin/sort/sort.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/sort.h Sun Jun 2 09:43:48 2013 (r251245) @@ -2,7 +2,7 @@ /*- * Copyright (C) 2009 Gabor Kovesdan <gabor@FreeBSD.org> - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * All rights reserved. * * Redistribution and use in source and binary forms, with or without Modified: head/usr.bin/sort/vsort.c ============================================================================== --- head/usr.bin/sort/vsort.c Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/vsort.c Sun Jun 2 09:43:48 2013 (r251245) @@ -1,5 +1,5 @@ /*- - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * Copyright (C) 2012 Gabor Kovesdan <gabor@FreeBSD.org> * All rights reserved. * Modified: head/usr.bin/sort/vsort.h ============================================================================== --- head/usr.bin/sort/vsort.h Sun Jun 2 09:02:12 2013 (r251244) +++ head/usr.bin/sort/vsort.h Sun Jun 2 09:43:48 2013 (r251245) @@ -1,7 +1,7 @@ /* $FreeBSD$ */ /*- - * Copyright (C) 2012 Oleg Moskalenko <oleg.moskalenko@citrix.com> + * Copyright (C) 2012 Oleg Moskalenko <mom040267@gmail.com> * Copyright (C) 2012 Gabor Kovesdan <gabor@FreeBSD.org> * All rights reserved. *
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201306020943.r529hnk4004528>