From 037c0994e43d76319d9d375abaaa504cf6fa39db Mon Sep 17 00:00:00 2001 From: Michael Kaufmann Date: Thu, 11 Dec 2025 14:29:37 +0100 Subject: [PATCH] Remove the account ID (it was always null) --- src/md_acme_acct.c | 4 ++-- src/md_acme_acct.h | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/md_acme_acct.c b/src/md_acme_acct.c index f3e043e8..39f2ca06 100644 --- a/src/md_acme_acct.c +++ b/src/md_acme_acct.c @@ -284,8 +284,8 @@ static int find_acct(void *baton, const char *name, const char *aspect, if (MD_ACME_ACCT_ST_VALID == acct->status && (!ctx->md || md_acme_acct_matches_md(acct, ctx->md))) { md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, 0, ctx->p, - "found account %s for %s: %s, status=%d", - acct->id, ctx->md->ca_effective, aspect, acct->status); + "found account for %s: %s, status=%d", + ctx->md->ca_effective, aspect, acct->status); ctx->id = apr_pstrdup(ctx->p, name); return 0; } diff --git a/src/md_acme_acct.h b/src/md_acme_acct.h index b5bba631..bec31f8a 100644 --- a/src/md_acme_acct.h +++ b/src/md_acme_acct.h @@ -36,7 +36,6 @@ typedef enum { } md_acme_acct_st; struct md_acme_acct_t { - const char *id; /* short, unique id for the account */ const char *url; /* url of the account, once registered */ const char *ca_url; /* url of the ACME protocol endpoint */ md_acme_acct_st status; /* status of this account */