aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2018-08-21 12:37:56 -0700
committerEric Biggers <ebiggers@google.com>2018-08-21 12:42:22 -0700
commit8387ad3fa708993a6af162bae71cdc2a8716e501 (patch)
treec2f528f9dab02517ef864485edf09325e3b65b29
parentd87691f838bc95a172ff011e2698819f75a089e2 (diff)
downloadfsverity-utils-8387ad3fa708993a6af162bae71cdc2a8716e501.tar.gz
s/Google Inc/Google LLC/
Signed-off-by: Eric Biggers <ebiggers@google.com>
-rw-r--r--cmd_enable.c4
-rw-r--r--cmd_measure.c4
-rw-r--r--cmd_setup.c4
-rw-r--r--debian/copyright2
-rw-r--r--elide_patch.c4
-rw-r--r--fsverity.c6
-rw-r--r--fsverity_uapi.h2
-rw-r--r--hash_algs.c4
-rw-r--r--scripts/gen_crc32c_table.c4
-rw-r--r--sign.c4
-rw-r--r--util.c4
-rw-r--r--util.h2
12 files changed, 22 insertions, 22 deletions
diff --git a/cmd_enable.c b/cmd_enable.c
index c7d7abd..ed092f0 100644
--- a/cmd_enable.c
+++ b/cmd_enable.c
@@ -2,9 +2,9 @@
/*
* The 'fsverity enable' command
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <fcntl.h>
diff --git a/cmd_measure.c b/cmd_measure.c
index 547e5e7..a5480a6 100644
--- a/cmd_measure.c
+++ b/cmd_measure.c
@@ -2,9 +2,9 @@
/*
* The 'fsverity measure' command
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <fcntl.h>
diff --git a/cmd_setup.c b/cmd_setup.c
index f2a6524..c598a71 100644
--- a/cmd_setup.c
+++ b/cmd_setup.c
@@ -2,9 +2,9 @@
/*
* The 'fsverity setup' command
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <fcntl.h>
diff --git a/debian/copyright b/debian/copyright
index a16863c..a728656 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -3,5 +3,5 @@ Upstream-Name: fsverity
Source: git://git.kernel.org/pub/scm/linux/kernel/git/mhalcrow/fsverity
Files: *
-Copyright: 2018 Google, Inc
+Copyright: 2018 Google LLC
License: GPL-2+
diff --git a/elide_patch.c b/elide_patch.c
index 374227a..3eed416 100644
--- a/elide_patch.c
+++ b/elide_patch.c
@@ -2,9 +2,9 @@
/*
* Elide and patch handling for 'fsverity setup'
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <errno.h>
diff --git a/fsverity.c b/fsverity.c
index db8966e..a463c7f 100644
--- a/fsverity.c
+++ b/fsverity.c
@@ -2,9 +2,9 @@
/*
* fs-verity userspace tool
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <stdlib.h>
@@ -83,7 +83,7 @@ static void show_version(void)
{
static const char * const str =
"fsverity " PACKAGE_VERSION "\n"
-"Copyright (C) 2018 Google, Inc.\n"
+"Copyright (C) 2018 Google LLC\n"
"License GPLv2+: GNU GPL version 2 or later <http://gnu.org/licenses/gpl.html>.\n"
"This is free software: you are free to change and redistribute it.\n"
"There is NO WARRANTY, to the extent permitted by law.\n"
diff --git a/fsverity_uapi.h b/fsverity_uapi.h
index 8881c54..1ec4b6c 100644
--- a/fsverity_uapi.h
+++ b/fsverity_uapi.h
@@ -2,7 +2,7 @@
/*
* fs-verity (file-based verity) support
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*/
#ifndef _UAPI_LINUX_FSVERITY_H
#define _UAPI_LINUX_FSVERITY_H
diff --git a/hash_algs.c b/hash_algs.c
index 00acf26..1e46924 100644
--- a/hash_algs.c
+++ b/hash_algs.c
@@ -2,9 +2,9 @@
/*
* fs-verity hash algorithms
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <openssl/evp.h>
diff --git a/scripts/gen_crc32c_table.c b/scripts/gen_crc32c_table.c
index fb045ff..1c5af88 100644
--- a/scripts/gen_crc32c_table.c
+++ b/scripts/gen_crc32c_table.c
@@ -2,9 +2,9 @@
/*
* Generate a table for CRC-32C calculation.
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <stdint.h>
diff --git a/sign.c b/sign.c
index 7a64e85..a2f4a1e 100644
--- a/sign.c
+++ b/sign.c
@@ -2,9 +2,9 @@
/*
* Signature support for 'fsverity setup'
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <fcntl.h>
diff --git a/util.c b/util.c
index 06a767f..cc5c4d4 100644
--- a/util.c
+++ b/util.c
@@ -2,9 +2,9 @@
/*
* Utility functions for the 'fsverity' program
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*
- * Written by Eric Biggers, 2018.
+ * Written by Eric Biggers.
*/
#include <errno.h>
diff --git a/util.h b/util.h
index 8b6e5dc..b2b18ef 100644
--- a/util.h
+++ b/util.h
@@ -2,7 +2,7 @@
/*
* Utility functions and macros for the 'fsverity' program
*
- * Copyright (C) 2018 Google, Inc.
+ * Copyright (C) 2018 Google LLC
*/
#ifndef UTIL_H
#define UTIL_H