From 8f1ad7f9fc8fa9a219be22e2975014bb9aa4687e Mon Sep 17 00:00:00 2001 From: anthony Date: Mon, 4 Jan 2010 20:09:05 -0700 Subject: [PATCH] the -k flag wrote to the wrong location. fixing the bug --- src/fix/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fix/main.c b/src/fix/main.c index 0f174bda..1af348ef 100644 --- a/src/fix/main.c +++ b/src/fix/main.c @@ -457,7 +457,7 @@ main(int argc, char *argv[]) } if ((ulOptions & OPTF_DEBUG) == 0) { fflush(f); - fseek(f, 0x13F, SEEK_SET); + fseek(f, 0x144, SEEK_SET); fwrite(nlicensee, 2, 1, f); fflush(f); }