- Timestamp:
- 01/12/05 11:29:08 (4 years ago)
- Location:
- branches/openct-0.6
- Files:
-
- 5 modified
-
ANNOUNCE (modified) (3 diffs)
-
NEWS (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
src/ct/socket.c (modified) (1 diff)
-
src/ct/status.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/openct-0.6/ANNOUNCE
r578 r591 1 OpenCT Release 0.6. 21 OpenCT Release 0.6.3 2 2 ==================== 3 3 4 We are pleased to announce the availability of OpenCT 0.6.2. 5 This is our new production release. 4 We are pleased to announce the availability of OpenCT 0.6.3. 6 5 7 6 OpenCT is a library for accessing smart card terminals. It provides a … … 13 12 provides a native OpenCT, CT-API and PC/SC Lite IFD interface with 14 13 an OpenCT ifdhandler resource manager. 15 16 14 17 15 Supported Hardware … … 42 40 43 41 For 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 1 1 NEWS for OpenCT -- History of user visible changes 2 3 New 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. 2 9 3 10 New in 0.6.2; 2004-10-31; Andreas Jellinghaus -
branches/openct-0.6/configure.ac
r586 r591 5 5 AC_PREREQ(2.52) 6 6 7 AC_INIT(openct, 0.6. 2)7 AC_INIT(openct, 0.6.3) 8 8 AM_INIT_AUTOMAKE 9 9 AM_CONFIG_HEADER(config.h) -
branches/openct-0.6/src/ct/socket.c
r548 r591 139 139 return fd; 140 140 } 141 ct_debug("connect() failed: %m");141 /* no error message - reader does not exist. */ 142 142 break; 143 143 default: -
branches/openct-0.6/src/ct/status.c
r361 r591 35 35 36 36 if ((fd = open(path, flags)) < 0) { 37 ct_error("unable to open %s: %m", path);37 /* no error message - openct not started? */ 38 38 return NULL; 39 39 }
