4 Commits
v0.22 ... v0.23

Author SHA1 Message Date
Martijn van Brummelen
8f5c05506f v0.23 2017-12-05 20:07:30 +01:00
Martijn van Brummelen
23c69f34c1 Merge pull request #35 from kelderek/kelderek-patch4
added #include <sys/ioctl.h> so it can get device name
2017-12-05 20:01:22 +01:00
kelderek
0b1cb83013 added #include <sys/ioctl.h> so it can get device name 2017-12-04 17:33:09 -05:00
martijn
17f23ba03b remove unused variable 2017-12-03 20:28:09 +01:00
5 changed files with 7 additions and 6 deletions

3
README
View File

@@ -18,6 +18,9 @@ Martijn van Brummelen
RELEASE NOTES
=============
v0.23
- make serial visible again on 32Bit machines
v0.22
- Update manpage
- use long long for device size

View File

@@ -2,8 +2,8 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.64])
AC_INIT(nwipe, 0.22, git@brumit.nl)
AM_INIT_AUTOMAKE(nwipe, 0.22)
AC_INIT(nwipe, 0.23, git@brumit.nl)
AM_INIT_AUTOMAKE(nwipe, 0.23)
AC_OUTPUT(Makefile src/Makefile man/Makefile)
AC_CONFIG_SRCDIR([src/nwipe.c])
AC_CONFIG_HEADERS([config.h])

View File

@@ -1,4 +1,4 @@
.TH NWIPE "1" "December 2017" "nwipe version 0.22" "User Commands"
.TH NWIPE "1" "December 2017" "nwipe version 0.23" "User Commands"
.SH NAME
nwipe \- securely erase disks
.SH SYNOPSIS

View File

@@ -19,6 +19,7 @@
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#include <sys/ioctl.h>
#include "nwipe.h"
#include "context.h"

View File

@@ -42,9 +42,6 @@ int nwipe_options_parse( int argc, char** argv )
extern nwipe_prng_t nwipe_twister;
extern nwipe_prng_t nwipe_isaac;
/* The maximum banner size, including the null. */
const int nwipe_banner_size = 81;
/* The getopt() result holder. */
int nwipe_opt;