diff options
author | millert <> | 2019-01-25 00:19:26 +0000 |
---|---|---|
committer | millert <> | 2019-01-25 00:19:26 +0000 |
commit | f8c2e2a6e61ac83e4628c06c0cf58417190fe848 (patch) | |
tree | 6ff19cc0a0ec464d64df49908593a1a66f6d7c73 /src/regress/lib/libc | |
parent | b5cdabff97144772f1f01e34938e4ab9e49a34e7 (diff) | |
download | openbsd-f8c2e2a6e61ac83e4628c06c0cf58417190fe848.tar.gz openbsd-f8c2e2a6e61ac83e4628c06c0cf58417190fe848.tar.bz2 openbsd-f8c2e2a6e61ac83e4628c06c0cf58417190fe848.zip |
I am retiring my old email address; replace it with my OpenBSD one.
Diffstat (limited to 'src/regress/lib/libc')
-rw-r--r-- | src/regress/lib/libc/env/envtest.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libc/fnmatch/fnm_test.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libc/gcvt/gcvt_test.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libc/getopt_long/getopt_long_test.c | 2 | ||||
-rw-r--r-- | src/regress/lib/libc/glob/globtest.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libc/qsort/qsort_test.c | 2 | ||||
-rw-r--r-- | src/regress/lib/libc/strlcat/strlcattest.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libc/strlcpy/strlcpytest.c | 4 | ||||
-rw-r--r-- | src/regress/lib/libc/strnlen/strnlentest.c | 4 |
9 files changed, 16 insertions, 16 deletions
diff --git a/src/regress/lib/libc/env/envtest.c b/src/regress/lib/libc/env/envtest.c index 33fc463404..f145ecbd14 100644 --- a/src/regress/lib/libc/env/envtest.c +++ b/src/regress/lib/libc/env/envtest.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: envtest.c,v 1.1 2010/08/23 22:34:37 millert Exp $ */ | 1 | /* $OpenBSD: envtest.c,v 1.2 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Copyright (c) 2010 Todd C. Miller <millert@openbsd.org> |
5 | * | 5 | * |
6 | * Permission to use, copy, modify, and distribute this software for any | 6 | * Permission to use, copy, modify, and distribute this software for any |
7 | * purpose with or without fee is hereby granted, provided that the above | 7 | * purpose with or without fee is hereby granted, provided that the above |
diff --git a/src/regress/lib/libc/fnmatch/fnm_test.c b/src/regress/lib/libc/fnmatch/fnm_test.c index f5958837e2..ee04f6335e 100644 --- a/src/regress/lib/libc/fnmatch/fnm_test.c +++ b/src/regress/lib/libc/fnmatch/fnm_test.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: fnm_test.c,v 1.2 2011/09/17 15:12:38 stsp Exp $ */ | 1 | /* $OpenBSD: fnm_test.c,v 1.3 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Public domain, 2008, Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Public domain, 2008, Todd C. Miller <millert@openbsd.org> |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <err.h> | 7 | #include <err.h> |
diff --git a/src/regress/lib/libc/gcvt/gcvt_test.c b/src/regress/lib/libc/gcvt/gcvt_test.c index 164d600cd2..d687cb8063 100644 --- a/src/regress/lib/libc/gcvt/gcvt_test.c +++ b/src/regress/lib/libc/gcvt/gcvt_test.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: gcvt_test.c,v 1.4 2010/09/18 20:29:15 millert Exp $ */ | 1 | /* $OpenBSD: gcvt_test.c,v 1.5 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Public domain, 2010, Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Public domain, 2010, Todd C. Miller <millert@openbsd.org> |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <stdio.h> | 7 | #include <stdio.h> |
diff --git a/src/regress/lib/libc/getopt_long/getopt_long_test.c b/src/regress/lib/libc/getopt_long/getopt_long_test.c index 9f6f603702..9e32f94501 100644 --- a/src/regress/lib/libc/getopt_long/getopt_long_test.c +++ b/src/regress/lib/libc/getopt_long/getopt_long_test.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 2002 Todd C. Miller <Todd.Miller@courtesan.com> | 2 | * Copyright (c) 2002 Todd C. Miller <millert@openbsd.org> |
3 | * | 3 | * |
4 | * Permission to use, copy, modify, and distribute this software for any | 4 | * Permission to use, copy, modify, and distribute this software for any |
5 | * purpose with or without fee is hereby granted, provided that the above | 5 | * purpose with or without fee is hereby granted, provided that the above |
diff --git a/src/regress/lib/libc/glob/globtest.c b/src/regress/lib/libc/glob/globtest.c index 325a7750f0..1f6037d5bc 100644 --- a/src/regress/lib/libc/glob/globtest.c +++ b/src/regress/lib/libc/glob/globtest.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: globtest.c,v 1.3 2011/01/07 19:45:44 millert Exp $ */ | 1 | /* $OpenBSD: globtest.c,v 1.4 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Public domain, 2008, Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Public domain, 2008, Todd C. Miller <millert@openbsd.org> |
5 | */ | 5 | */ |
6 | 6 | ||
7 | #include <err.h> | 7 | #include <err.h> |
diff --git a/src/regress/lib/libc/qsort/qsort_test.c b/src/regress/lib/libc/qsort/qsort_test.c index 8ab3d9f50d..352c707718 100644 --- a/src/regress/lib/libc/qsort/qsort_test.c +++ b/src/regress/lib/libc/qsort/qsort_test.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * Copyright (c) 2017 Todd C. Miller <Todd.Miller@courtesan.com> | 2 | * Copyright (c) 2017 Todd C. Miller <millert@openbsd.org> |
3 | * | 3 | * |
4 | * Permission to use, copy, modify, and distribute this software for any | 4 | * Permission to use, copy, modify, and distribute this software for any |
5 | * purpose with or without fee is hereby granted, provided that the above | 5 | * purpose with or without fee is hereby granted, provided that the above |
diff --git a/src/regress/lib/libc/strlcat/strlcattest.c b/src/regress/lib/libc/strlcat/strlcattest.c index 155aa6f727..86896ff987 100644 --- a/src/regress/lib/libc/strlcat/strlcattest.c +++ b/src/regress/lib/libc/strlcat/strlcattest.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: strlcattest.c,v 1.2 2014/12/03 18:25:18 millert Exp $ */ | 1 | /* $OpenBSD: strlcattest.c,v 1.3 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2014 Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Copyright (c) 2014 Todd C. Miller <millert@openbsd.org> |
5 | * | 5 | * |
6 | * Permission to use, copy, modify, and distribute this software for any | 6 | * Permission to use, copy, modify, and distribute this software for any |
7 | * purpose with or without fee is hereby granted, provided that the above | 7 | * purpose with or without fee is hereby granted, provided that the above |
diff --git a/src/regress/lib/libc/strlcpy/strlcpytest.c b/src/regress/lib/libc/strlcpy/strlcpytest.c index df5d36366c..e2151aea74 100644 --- a/src/regress/lib/libc/strlcpy/strlcpytest.c +++ b/src/regress/lib/libc/strlcpy/strlcpytest.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: strlcpytest.c,v 1.2 2014/12/03 18:25:18 millert Exp $ */ | 1 | /* $OpenBSD: strlcpytest.c,v 1.3 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2014 Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Copyright (c) 2014 Todd C. Miller <millert@openbsd.org> |
5 | * | 5 | * |
6 | * Permission to use, copy, modify, and distribute this software for any | 6 | * Permission to use, copy, modify, and distribute this software for any |
7 | * purpose with or without fee is hereby granted, provided that the above | 7 | * purpose with or without fee is hereby granted, provided that the above |
diff --git a/src/regress/lib/libc/strnlen/strnlentest.c b/src/regress/lib/libc/strnlen/strnlentest.c index e67e6adfb8..045b258bf1 100644 --- a/src/regress/lib/libc/strnlen/strnlentest.c +++ b/src/regress/lib/libc/strnlen/strnlentest.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* $OpenBSD: strnlentest.c,v 1.1 2010/06/02 12:20:47 millert Exp $ */ | 1 | /* $OpenBSD: strnlentest.c,v 1.2 2019/01/25 00:19:26 millert Exp $ */ |
2 | 2 | ||
3 | /* | 3 | /* |
4 | * Copyright (c) 2010 Todd C. Miller <Todd.Miller@courtesan.com> | 4 | * Copyright (c) 2010 Todd C. Miller <millert@openbsd.org> |
5 | * | 5 | * |
6 | * Permission to use, copy, modify, and distribute this software for any | 6 | * Permission to use, copy, modify, and distribute this software for any |
7 | * purpose with or without fee is hereby granted, provided that the above | 7 | * purpose with or without fee is hereby granted, provided that the above |