2000-10-23 Jochen Eisinger <jochen.eisinger@gmx.net>

* backend/dll.c: added test for ``dll'' in dll.conf
DEVEL_2_0_BRANCH-1
Jochen Eisinger 2000-10-23 15:03:08 +00:00
rodzic 12c9770d63
commit 3f3911fdb8
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -203,6 +203,12 @@ add_backend (const char *name, struct backend **bep)
DBG(1, "adding backend %s\n", name);
if (strcmp(name,"dll") == 0)
{
DBG( 0, "remove the dll-backend from your dll.conf !!!\n");
return SANE_STATUS_GOOD;
}
for (prev = 0, be = first_backend; be; prev = be, be = be->next)
if (strcmp (be->name, name) == 0)
{