summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuc Verhaegen <lverhaegen@ridcully.suse.de>2009-01-08 17:40:02 +0100
committerLuc Verhaegen <lverhaegen@ridcully.suse.de>2009-01-08 17:40:02 +0100
commit12277577f2fed58bad8d3453040b2fd95b05ab96 (patch)
tree6fe401e24f1a551188b612a77e85046b56bf4402
parentfb74470a46726fd660f709bc5864ef8b4944ad11 (diff)
Bump version and further leftover removal.
-rw-r--r--src/amideco.c16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/amideco.c b/src/amideco.c
index ef5c5f3..011082b 100644
--- a/src/amideco.c
+++ b/src/amideco.c
@@ -72,15 +72,7 @@ typedef struct
char Year[2];
} AMIDATE;
-#define SftName "AmiBIOSDeco"
-#define SftEMail "Anton Borisov, anton.borisov@gmail.com"
-
-/********SoftWare*************/
-uint8_t CopyRights[] = "\n(C) Anton Borisov, 2000, 2002-2003, 2006. Portions (C) 1999-2000";
-uint8_t Url[] = "Bug-reports direct to "SftEMail;
-
-#define SftVersion "0.31e"
-
+#define VERSION "0.32"
#define ACT_NONE 0
#define ACT_EXTRACT 1
@@ -91,8 +83,8 @@ static char *FileName = NULL;
static void
HelpPrint(char *name)
{
- printf("%s Version %s \n\n", SftName, SftVersion);
- printf("Program to extract AMI Bios images (AMIBIOS '94 and '95).\n");
+ printf("%s version %s \n\n", name, VERSION);
+ printf("Program to extract AMI Bios images (AMIBIOS '94 and '95).\n\n");
printf("Usage: %s <action> <filename>\n", name);
printf("Actions:\n");
printf("\"l\"\tList Bios Structure.\n");
@@ -501,8 +493,6 @@ main(int argc, char *argv[])
ArgumentsParse(argc, argv);
- printf("\n%s, version %s\n\n", SftName, SftVersion);
-
ptx = fopen(FileName, "rb");
if (!ptx) {
fprintf(stderr, "Error: Failed to open %s: %s\n", FileName, strerror(errno));