From ef0d7b0ec9ee0239831ccc54832d4e96a21885bc Mon Sep 17 00:00:00 2001 From: Mike Yuan Date: Wed, 31 Jul 2024 19:03:44 +0200 Subject: [PATCH] core/exec-credential: drop misleading comment regarding EEXIST Follow-up for 2c2ed3272b992b6eb13864e49847c943e42be00f As explained in the referenced commit, we shall never get EEXIST in the first place. --- src/core/exec-credential.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core/exec-credential.c b/src/core/exec-credential.c index 9a0a4f91987..b9c1fcdf16d 100644 --- a/src/core/exec-credential.c +++ b/src/core/exec-credential.c @@ -868,10 +868,6 @@ static int acquire_credentials( const char *data; size_t size, add; - /* Note that we check ahead of time here instead of relying on O_EXCL|O_CREAT later to return - * EEXIST if the credential already exists. That's because the TPM2-based decryption is kinda - * slow and involved, hence it's nice to be able to skip that if the credential already - * exists anyway. */ if (faccessat(dfd, sc->id, F_OK, AT_SYMLINK_NOFOLLOW) >= 0) { log_debug("Skipping credential with duplicated ID %s", sc->id); continue; -- 2.47.3