diff options
author | daichi <daichi@FreeBSD.org> | 2003-07-29 14:03:54 +0800 |
---|---|---|
committer | daichi <daichi@FreeBSD.org> | 2003-07-29 14:03:54 +0800 |
commit | 583e2770a1509383a74213a35dbd9bf4d8f6b1d3 (patch) | |
tree | ff0a4a044e8adc405613281e306fd8b80b23486a /security/bcwipe/files | |
parent | 8a6bbb0a93e2ae21d63f611719984858d41f346a (diff) | |
download | freebsd-ports-gnome-583e2770a1509383a74213a35dbd9bf4d8f6b1d3.tar.gz freebsd-ports-gnome-583e2770a1509383a74213a35dbd9bf4d8f6b1d3.tar.zst freebsd-ports-gnome-583e2770a1509383a74213a35dbd9bf4d8f6b1d3.zip |
update security/bcwipe: 1.2.1 -> 1.2.3
PR: 50170
Submitted by: Foldi Tamas <crow@nektor.hu> (maintainer)
Diffstat (limited to 'security/bcwipe/files')
-rw-r--r-- | security/bcwipe/files/patch-aa | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/security/bcwipe/files/patch-aa b/security/bcwipe/files/patch-aa deleted file mode 100644 index 1e876cd57911..000000000000 --- a/security/bcwipe/files/patch-aa +++ /dev/null @@ -1,37 +0,0 @@ ---- wipe.c Fri Nov 8 11:21:30 2002 -+++ wipe.c Fri Nov 8 11:15:03 2002 -@@ -28,7 +28,6 @@ - #include <utime.h> - #include <stdlib.h> - #include <sys/ioctl.h> --#include <sys/vfs.h> - #include <time.h> - #include <ctype.h> - #include <sys/mount.h> -@@ -68,7 +67,7 @@ - int ask_y_n(char *string) - { - char c; -- fprintf(stderr,string); -+ fprintf(stderr,"%s",string); - c = tolower(fgetc(stdin)); - if ( '\n' == c ) return FALSE; - while ( '\n' != fgetc(stdin) ); -@@ -700,7 +699,7 @@ - case '?': - case 'h': - default: -- fprintf(stdout,usage_string); -+ fprintf(stdout,"%s",usage_string); - exit(0); - } /* end of switch */ - } /* end of while */ -@@ -710,7 +709,7 @@ - - if ( 0 == argc ) - { -- fprintf(stdout,usage_string); -+ fprintf(stdout,"%s",usage_string); - exit(0); - } - if ( o_force ) o_interactive=FALSE; |