diff --git a/scd/app.c b/scd/app.c index 2e2729e32..8d4d1c032 100644 --- a/scd/app.c +++ b/scd/app.c @@ -121,6 +121,9 @@ check_conflict (app_t app, const char *name) if (!app || !name || (app->apptype && !ascii_strcasecmp (app->apptype, name))) return 0; + if (app->apptype && !strcmp (app->apptype, "UNDEFINED")) + return 0; + log_info ("application '%s' in use - can't switch\n", app->apptype? app->apptype : "");