View | Details | Raw Unified | Return to bug 111841
Collapse All | Expand All

(-)sysutils/dd_rescue/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	dd_rescue
8
PORTNAME=	dd_rescue
9
PORTVERSION=	1.12
9
PORTVERSION=	1.13
10
CATEGORIES=	sysutils
10
CATEGORIES=	sysutils
11
MASTER_SITES=	http://www.garloff.de/kurt/linux/ddrescue/
11
MASTER_SITES=	http://www.garloff.de/kurt/linux/ddrescue/
12
12
(-)sysutils/dd_rescue/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
MD5 (dd_rescue-1.12.tar.gz) = 80eefb5685f8cfc84f87348e5102e6fb
1
MD5 (dd_rescue-1.13.tar.gz) = 7abe94d997c6c613f19f5bfd952904e4
2
SHA256 (dd_rescue-1.12.tar.gz) = 098d24a5f629396d85fe24ab6852c8a92460864c22be519f2ba8e2430c524f8b
2
SHA256 (dd_rescue-1.13.tar.gz) = 55417cf32d08ff1c87f9124d0b9705a91822edb7abd4a3f51094b414b0444826
3
SIZE (dd_rescue-1.12.tar.gz) = 18123
3
SIZE (dd_rescue-1.13.tar.gz) = 17514
(-)sysutils/dd_rescue/files/patch-dd_rescue.c (-18 / +3 lines)
Lines 1-21 Link Here
1
--- dd_rescue.c.orig	Sun Jul 23 20:47:50 2006
1
--- dd_rescue.c.orig	Sun Mar 18 07:29:10 2007
2
+++ dd_rescue.c	Mon Feb 12 02:53:35 2007
2
+++ dd_rescue.c
3
@@ -213,11 +213,13 @@
3
@@ -742,7 +742,8 @@
4
 
5
 void savebb( int block )
6
 {
7
+	FILE *bbfile;
8
+
9
 	fplog(stderr, "Bad block: %d\n", block);
10
     
11
 	if( bbname == NULL )
12
 		return;
13
-	FILE *bbfile = fopen(bbname,"a");
14
+	bbfile = fopen(bbname,"a");
15
 	fprintf(bbfile,"%d\n",block);
16
 	fclose(bbfile);
17
 }
18
@@ -742,7 +744,8 @@
19
 		ipos = 0;
4
 		ipos = 0;
20
 
5
 
21
 #ifdef O_DIRECT
6
 #ifdef O_DIRECT

Return to bug 111841