diff options
author | Willy Tarreau <w@1wt.eu> | 2006-07-16 14:53:17 +0200 |
---|---|---|
committer | Willy Tarreau <willy@wtap.(none)> | 2006-07-26 10:49:00 +0200 |
commit | de2d27fc295d8bfebd6ae86c7f7475e649c1c0b9 (patch) | |
tree | 3c30ee2ee25dbadbb90c411042561fbc15ac9c1b /flx | |
parent | [RELEASE] flxutils-0.1.9 (diff) | |
download | flxutils-de2d27fc295d8bfebd6ae86c7f7475e649c1c0b9.tar.xz |
[RELEASE] flxutils-0.1.10.1v0.1.10.1
Diffstat (limited to 'flx')
-rw-r--r-- | flx/Makefile | 5 | ||||
-rw-r--r-- | flx/arg.c | 1 | ||||
-rw-r--r-- | flx/check.c | 2 | ||||
-rw-r--r-- | flx/flx.h | 2 |
4 files changed, 6 insertions, 4 deletions
diff --git a/flx/Makefile b/flx/Makefile index 37e878b..a84b701 100644 --- a/flx/Makefile +++ b/flx/Makefile @@ -26,13 +26,12 @@ NAME=flx -VERSION=0.6.6d -COPYRIGHT="Copyright 2002, Benoit DOLEZ <bdolez@ant-computing.com>" +VERSION=0.6.6e SRC=main.c arg.c utils.c md5.c flx.c fct1.c check.c sign.c \ input.c input_fs.c input_file.c \ output.c output_file.c OBJ=$(SRC:.c=.o) -CFLAGS= -Wall -O2 -DMEM_OPTIM -DPROGRAM_NAME=\"$(NAME)\" -DPROGRAM_VERSION=\"$(VERSION)\" -DCOPYRIGHT=\"$(COPYRIGHT)\" +CFLAGS= -Wall -O2 -DMEM_OPTIM -DPROGRAM_NAME=\"$(NAME)\" -DPROGRAM_VERSION=\"$(VERSION)\" LDFLAGS=-L. $(NAME): $(OBJ) @@ -2,6 +2,7 @@ #include <string.h> #include <stdarg.h> +#include "flx.h" #include "arg.h" diff --git a/flx/check.c b/flx/check.c index cbc8639..4c09a47 100644 --- a/flx/check.c +++ b/flx/check.c @@ -473,7 +473,7 @@ int flxcheck_main(int argc, char **argv) { /* on compare les données deux à deux afin de compléter 'dst' */ ft_find_diff(&src1, &src2, &dst); ft_find_diff(&src1, &tmp2, &dst); - ft_find_diff(&src2, &tmp1, &dst); + ft_find_diff(&tmp1, &src2, &dst); /* toutes les données identiques ont été détectée pour la partie * déterminée, on déplace le contenu de la source vers les tampons */ @@ -8,6 +8,8 @@ #include "utils.h" #include "md5.h" +#define COPYRIGHT "Copyright 2002, Benoit DOLEZ <bdolez@ant-computing.com>" + #define DUMPBASENAME "formilux-sig.dat" #define MD5_Init(ctx) ToolsMD5Init(ctx) |