aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Biggers <ebiggers@google.com>2019-06-26 17:38:12 -0700
committerEric Biggers <ebiggers@google.com>2019-06-26 17:38:12 -0700
commitac3717192cfaa496ae8ffbe1f6b2a02ce88e629c (patch)
treea8403eb284bb6cc4fecb4d2678f37652393fb8d5
parent6033f555d1cb9c17abf3b860922d3ae6457cb1b1 (diff)
downloadfsverity-utils-ac3717192cfaa496ae8ffbe1f6b2a02ce88e629c.tar.gz
cmd_sign: use consistent filename quoting style
Signed-off-by: Eric Biggers <ebiggers@google.com>
-rw-r--r--cmd_sign.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd_sign.c b/cmd_sign.c
index 19dff63..fb4d2e5 100644
--- a/cmd_sign.c
+++ b/cmd_sign.c
@@ -620,7 +620,7 @@ int fsverity_cmd_sign(const struct fsverity_command *cmd,
goto out_err;
bin2hex(digest->digest, hash_alg->digest_size, digest_hex);
- printf("Signed file \"%s\" (%s:%s)\n", argv[0], hash_alg->name,
+ printf("Signed file '%s' (%s:%s)\n", argv[0], hash_alg->name,
digest_hex);
status = 0;
out: