12 Commits

Author SHA1 Message Date
Jonas Stein
dc99d2b3e6 Merge pull request #20 from jonasstein/master
Release 1.0.8
2020-06-17 01:13:03 +02:00
Jonas Stein
d9d8b158c5 Release 1.0.8 2020-06-17 01:11:56 +02:00
Jonas Stein
f175bf4c0b Merge pull request #19 from jonasstein/master
README .md syntax
2020-06-16 22:29:48 +02:00
Jonas Stein
41df2d0c0b README .md syntax 2020-06-16 22:28:45 +02:00
Jonas Stein
2f3d5d27a5 Merge pull request #18 from jonasstein/master
README compile
2020-06-16 22:25:25 +02:00
Jonas Stein
57727c43fe README compile 2020-06-16 22:22:43 +02:00
Jonas Stein
6fc15b72e7 Merge pull request #16 from JosefMeixner/errorreporting
Added output of strerror to undecoded error codes
2020-06-16 22:13:53 +02:00
Jonas Stein
65464950e0 Merge pull request #10 from scsitape/jonasstein-patch-1
Create CONTRIBUTING.md
2020-06-16 22:07:24 +02:00
Jonas Stein
1e89afd60e Merge pull request #14 from Malvineous/master
Fix errors in autogen.sh
2020-06-16 21:30:55 +02:00
Josef Meixner
e8d1f6b66b Added output of strerror to undecoded error codes 2020-04-13 12:11:26 +02:00
Adam Nielsen
a43678d209 Use Automake 'foreign' option
This avoids errors on missing files NEWS and README.
2018-12-21 00:02:34 +10:00
Adam Nielsen
9022262489 $VARS are not permitted in AC_INIT 2018-12-21 00:02:34 +10:00
4 changed files with 17 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
2020-06-16 Jonas Stein <news@jonasstein.de>
* Version upgraded to 1.0.8
* Merged patches to fix make files and provide more error messages
2018-02-13 Jonas Stein <news@jonasstein.de>
* Merged patches from various sources
* move from SF to github in cooperation with John Coleman

View File

@@ -16,6 +16,16 @@ Features
* AES Encryption
* Key Descriptor Management
Get the source code and compile
-------------------------------
```
git clone git@github.com:scsitape/stenc.git
cd stenc/
autoreconf --install
./configure
make
```
Linux Packages
--------------

View File

@@ -1,9 +1,6 @@
PACKAGE=stenc
VERSION=1.0.7
AC_INIT($PACKAGE, $VERSION)
AC_INIT([stenc], [1.0.8])
AC_CONFIG_SRCDIR([src/main.cpp])
AM_INIT_AUTOMAKE
AM_INIT_AUTOMAKE([foreign])
AC_CONFIG_HEADERS([config.h])
AC_CHECK_HEADER([sys/types.h])

View File

@@ -566,7 +566,7 @@ void readIOError(int err){
#endif
default:
if(errno!=0){
cerr<<"0x"<<hex<<errno<<endl;
cerr<<"0x"<<hex<<errno<<" "<<strerror(errno)<<endl;
}
}