forked from martijnvanbrummelen/nwipe
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Some IDE USB adapter chipsets get the endian wrong for model name This fix identifies a endian swapped model name and corrects it. The function currently only includes Samsung but I'll add more IDE drive manufacturers as I come across them. This is peculiar to some USB IDE adapters. I've never seen this issue with SATA, ATA drives connected directly to the motherboard.
- Loading branch information
1 parent
65a3a45
commit 2a4c56f
Showing
4 changed files
with
62 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
* used by configure to dynamically assign those values | ||
* to documentation files. | ||
*/ | ||
const char* version_string = "0.34.91 Development code, not for production use!"; | ||
const char* version_string = "0.34.92"; | ||
const char* program_name = "nwipe"; | ||
const char* author_name = "Martijn van Brummelen"; | ||
const char* email_address = "[email protected]"; | ||
|
@@ -14,4 +14,4 @@ Modifications to original dwipe Copyright Andy Beverley <[email protected]>\n\ | |
This is free software; see the source for copying conditions.\n\ | ||
There is NO warranty; not even for MERCHANTABILITY or FITNESS\n\ | ||
FOR A PARTICULAR PURPOSE.\n"; | ||
const char* banner = "nwipe 0.34.91 Development code, not for production use!"; | ||
const char* banner = "nwipe 0.34.92"; |