Compare commits
12 Commits
jonasstein
...
1.0.8
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
dc99d2b3e6 | ||
|
|
d9d8b158c5 | ||
|
|
f175bf4c0b | ||
|
|
41df2d0c0b | ||
|
|
2f3d5d27a5 | ||
|
|
57727c43fe | ||
|
|
6fc15b72e7 | ||
|
|
65464950e0 | ||
|
|
1e89afd60e | ||
|
|
e8d1f6b66b | ||
|
|
a43678d209 | ||
|
|
9022262489 |
@@ -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>
|
2018-02-13 Jonas Stein <news@jonasstein.de>
|
||||||
* Merged patches from various sources
|
* Merged patches from various sources
|
||||||
* move from SF to github in cooperation with John Coleman
|
* move from SF to github in cooperation with John Coleman
|
||||||
|
|||||||
10
README.md
10
README.md
@@ -16,6 +16,16 @@ Features
|
|||||||
* AES Encryption
|
* AES Encryption
|
||||||
* Key Descriptor Management
|
* 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
|
Linux Packages
|
||||||
--------------
|
--------------
|
||||||
|
|||||||
@@ -1,9 +1,6 @@
|
|||||||
PACKAGE=stenc
|
AC_INIT([stenc], [1.0.8])
|
||||||
VERSION=1.0.7
|
|
||||||
|
|
||||||
AC_INIT($PACKAGE, $VERSION)
|
|
||||||
AC_CONFIG_SRCDIR([src/main.cpp])
|
AC_CONFIG_SRCDIR([src/main.cpp])
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE([foreign])
|
||||||
|
|
||||||
AC_CONFIG_HEADERS([config.h])
|
AC_CONFIG_HEADERS([config.h])
|
||||||
AC_CHECK_HEADER([sys/types.h])
|
AC_CHECK_HEADER([sys/types.h])
|
||||||
|
|||||||
@@ -566,7 +566,7 @@ void readIOError(int err){
|
|||||||
#endif
|
#endif
|
||||||
default:
|
default:
|
||||||
if(errno!=0){
|
if(errno!=0){
|
||||||
cerr<<"0x"<<hex<<errno<<endl;
|
cerr<<"0x"<<hex<<errno<<" "<<strerror(errno)<<endl;
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user