Your message dated Sun, 20 Jul 2008 15:15:16 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#405149: hylafax-server: faxinfo and other utils always 
exit(0), even on erros
has caused the Debian Bug report #405149,
regarding hylafax-server: faxinfo and other utils always exit(0), even on erros
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
405149: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=405149
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: hylafax-server
Version: 2:4.3.1~rc3-1
Severity: normal

hi,

this was mentioned 'en passant' in #370420: faxinfo as well as other utils,
should exit with non-0 status, so that scripts can implement case path
according to return code as usual.
Se also proposed patch in #370420 (faxinfo only).

I feel bug is 'normal' instead of just 'wishlist', as eg 'success' (rc=0)
isn't expected in current practice for eg 'either not TIFF or corrupted'.

thanks
-- paolo



--- End Message ---
--- Begin Message ---
package hylafax-server
fixed 405249 2:4.4.0-1
thanks

Hi Paolo,
new version of hylafax fixes this problem on faxinfo using this code:

        TIFF* tif = TIFFOpen(argv[optind], "r");
        if (tif == NULL) {
            printf("Could not open %s; either not TIFF or corrupted.\n",
                    argv[optind]);
            return (1);
        }
        bool ok = isFAXImage(tif);
        if (!ok) {
            printf("Does not look like a facsimile?\n");
            return (1);
        }

So, I think this bug should heve been closed long ago.

Bye,
Giuseppe



--- End Message ---

Reply via email to