From b2823cbd74ad94e704cb8d6b9cac571a34f1e8b3 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Tue, 25 Feb 2020 23:25:51 -0600 Subject: [PATCH] Move some infra bits of lib/krb5/ to lib/base/ (1) This is the first of two commits in a series that must be picked together. This series of two commits moves parts of lib/krb5/ infrastructure functionality to lib/base/, leaving behind wrappers. This commit only renames files to enable git log/diff/blame to follow the renames: to help future code archeology, and to make reviewing these two commits easier. The next commit in this series ensures that the moved files have the correct content (i.e., defining heim APIs instead of krb5 APIs), and will create files in lib/krb5 with the same names and krb5 API wrappers around the new heim API functions. The next commit also explains the motivation, which, briefly, is to: - remove krb5 API usage from lib/gssapi/, - enable the use of configuration and plugins in lib/hx509/ (as well as lib/gssapi/ and future projects), and - enable the further disentanglement of bx509d from kdc/. --- lib/{krb5 => base}/config_file.c | 0 lib/{krb5 => base}/config_reg.c | 0 lib/{krb5 => base}/expand_path.c | 0 lib/{krb5 => base}/log.c | 0 lib/{krb5 => base}/plugin.c | 0 lib/{krb5 => base}/warn.c | 0 6 files changed, 0 insertions(+), 0 deletions(-) rename lib/{krb5 => base}/config_file.c (100%) rename lib/{krb5 => base}/config_reg.c (100%) rename lib/{krb5 => base}/expand_path.c (100%) rename lib/{krb5 => base}/log.c (100%) rename lib/{krb5 => base}/plugin.c (100%) rename lib/{krb5 => base}/warn.c (100%) diff --git a/lib/krb5/config_file.c b/lib/base/config_file.c similarity index 100% rename from lib/krb5/config_file.c rename to lib/base/config_file.c diff --git a/lib/krb5/config_reg.c b/lib/base/config_reg.c similarity index 100% rename from lib/krb5/config_reg.c rename to lib/base/config_reg.c diff --git a/lib/krb5/expand_path.c b/lib/base/expand_path.c similarity index 100% rename from lib/krb5/expand_path.c rename to lib/base/expand_path.c diff --git a/lib/krb5/log.c b/lib/base/log.c similarity index 100% rename from lib/krb5/log.c rename to lib/base/log.c diff --git a/lib/krb5/plugin.c b/lib/base/plugin.c similarity index 100% rename from lib/krb5/plugin.c rename to lib/base/plugin.c diff --git a/lib/krb5/warn.c b/lib/base/warn.c similarity index 100% rename from lib/krb5/warn.c rename to lib/base/warn.c