Commit 5be4bf70fe48a99eb5f8384bae0c94cfb2183a81

Luke Dashjr 2012-02-10T21:33:26

Bugfix: BitFORCE index needs to be static to count correctly

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/bitforce.c b/bitforce.c
index 4081b71..939455b 100644
--- a/bitforce.c
+++ b/bitforce.c
@@ -72,7 +72,7 @@ static void BFwrite(int fd, const void *buf, size_t bufLen)
 static bool bitforce_detect_one(const char *devpath)
 {
 	char pdevbuf[0x100];
-	int i = 0;
+	static int i = 0;
 
 	if (total_devices == MAX_DEVICES)
 		return false;