From ff21a49cb092292c0b9a3740c1d3ea5804cd0216 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Mon, 7 Jan 2019 16:49:38 +1100 Subject: [PATCH] krb5: change "version" to "instance" in plugin error message A mismatch of instance cookie just means that the instances of Heimdal do not match; they may in fact be the same version. --- lib/krb5/plugin.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/krb5/plugin.c b/lib/krb5/plugin.c index a93952e43c..371c429342 100644 --- a/lib/krb5/plugin.c +++ b/lib/krb5/plugin.c @@ -553,7 +553,7 @@ validate_plugin_deps(krb5_context context, if (heim_instance != plugin_instance) { krb5_warnx(context, "plugin %s library %s linked against different " - "version of Heimdal (got %zu, us %zu)", + "instance of Heimdal (got %zu, us %zu)", dsopath, caller->deps[i], plugin_instance, heim_instance); return FALSE;