Changeset 591 for branches/openct-0.6

Show
Ignore:
Timestamp:
01/12/05 11:29:08 (4 years ago)
Author:
aj
Message:

small changes for version 0.6.3.

Location:
branches/openct-0.6
Files:
5 modified

Legend:

Unmodified
Added
Removed
  • branches/openct-0.6/ANNOUNCE

    r578 r591  
    1 OpenCT Release 0.6.2 
     1OpenCT Release 0.6.3 
    22==================== 
    33 
    4 We are pleased to announce the availability of OpenCT 0.6.2. 
    5 This is our new production release. 
     4We are pleased to announce the availability of OpenCT 0.6.3. 
    65 
    76OpenCT is a library for accessing smart card terminals.  It provides a 
     
    1312provides a native OpenCT, CT-API and PC/SC Lite IFD interface with 
    1413an OpenCT ifdhandler resource manager. 
    15  
    1614 
    1715Supported Hardware 
     
    4240 
    4341For questions regarding OpenCT, please contact the OpenSC mailing list 
    44 (opensc-devel). For subscription information, see http://www.opensc.org. 
     42(opensc-devel). For subscription information, see http://www.opensc.org/. 
  • branches/openct-0.6/NEWS

    r578 r591  
    11NEWS for OpenCT -- History of user visible changes 
     2 
     3New in 0.6.3; 2005-01-11; Andreas Jellinghaus 
     4* silence "unable to open" and "Debug: connect() failed:" error messages, 
     5  as they can happen in normal operation (e.g. opensc compiled with openct 
     6  support (but openct not used), or probing for readers to see if there is 
     7  one). 
     8* add version option to all command line tools. 
    29 
    310New in 0.6.2; 2004-10-31; Andreas Jellinghaus 
  • branches/openct-0.6/configure.ac

    r586 r591  
    55AC_PREREQ(2.52) 
    66 
    7 AC_INIT(openct, 0.6.2) 
     7AC_INIT(openct, 0.6.3) 
    88AM_INIT_AUTOMAKE 
    99AM_CONFIG_HEADER(config.h) 
  • branches/openct-0.6/src/ct/socket.c

    r548 r591  
    139139                        return fd; 
    140140                } 
    141                 ct_debug("connect() failed: %m"); 
     141                /* no error message - reader does not exist. */ 
    142142                break; 
    143143        default: 
  • branches/openct-0.6/src/ct/status.c

    r361 r591  
    3535 
    3636        if ((fd = open(path, flags)) < 0) { 
    37                 ct_error("unable to open %s: %m", path); 
     37                /* no error message - openct not started? */ 
    3838                return NULL; 
    3939        }