2004-02-27 Matthew Duggan <stauff1@users.sourceforge.net>

* backend/canon_pp.c: Add more debug output to help resolve bug #300524
merge-requests/1/head
Matthew Duggan 2004-02-26 22:05:21 +00:00
rodzic a2e686d667
commit 34f8a413bf
2 zmienionych plików z 19 dodań i 2 usunięć

Wyświetl plik

@ -1,3 +1,7 @@
2004-02-27 Matthew Duggan <stauff1@users.sourceforge.net>
* backend/canon_pp.c: Add more debug output to help resolve bug #300524
2004-02-22 Henning Meier-Geinitz <henning@meier-geinitz.de>
* doc/scanimage.man frontend/scanimage.c: Added support for asking

Wyświetl plik

@ -225,7 +225,9 @@ sane_init (SANE_Int *vc, SANE_Auth_Callback cb)
* parallel port above */
first_dev->weights_file = tmp_wf;
DBG(100, "sane_init: Successfully "
"parsed cal.\n");
"parsed (old) cal, "
"weight file is "
"'%s'.\n", tmp_wf);
continue;
}
@ -233,15 +235,26 @@ sane_init (SANE_Int *vc, SANE_Auth_Callback cb)
/* Now find which scanner wants
* this calibration file */
s_tmp = first_dev;
DBG(100, "sane_init: Finding scanner on port "
"'%s'\n", tmp_port+1);
while (s_tmp != NULL)
{
if (!strcmp(s_tmp->params.port->name,
tmp_port+1))
{
DBG(100, "sane_init: Found!\n");
/* Now terminate the weight
* file string */
*tmp_port = '\0';
s_tmp->weights_file = tmp_wf;
DBG(100, "sane_init: Parsed "
"cal.\n");
"cal, for port"
" '%s', weight"
" file is '%s'"
".\n",
s_tmp->params.
port->name,
tmp_wf);
break;
}
s_tmp = s_tmp->next;