diff options
Diffstat (limited to 'scd/app.c')
-rw-r--r-- | scd/app.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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 : "<null>"); |