diff options
-rw-r--r-- | Makefile.common | 1 | ||||
-rw-r--r-- | epan/Makefile.common | 3 | ||||
-rw-r--r-- | epan/sha1.c (renamed from sha1.c) | 4 | ||||
-rw-r--r-- | epan/sha1.h (renamed from sha1.h) | 2 |
4 files changed, 7 insertions, 3 deletions
diff --git a/Makefile.common b/Makefile.common index 65f826bfc8..b254e53034 100644 --- a/Makefile.common +++ b/Makefile.common @@ -54,7 +54,6 @@ DISSECTOR_SUPPORT_INCLUDES = \ rpc_defrag.h \ rtp_pt.h \ sctpppids.h \ - sha1.h \ smb.h \ t35.h \ tap.h \ diff --git a/epan/Makefile.common b/epan/Makefile.common index 56413c5b79..18c558024b 100644 --- a/epan/Makefile.common +++ b/epan/Makefile.common @@ -52,6 +52,7 @@ LIBETHEREAL_SRC = \ prefs.c \ proto.c \ range.c \ + sha1.c \ sna-utils.c \ strutil.c \ timestamp.c \ @@ -98,6 +99,7 @@ LIBETHEREAL_INCLUDES = \ proto.h \ range.h \ report_err.h \ + sha1.h \ slab.h \ sna-utils.h \ strutil.h \ @@ -117,7 +119,6 @@ DISSECTOR_SUPPORT_SRC = \ ../ptvcursor.c \ ../reassemble.c \ ../req_resp_hdrs.c \ - ../sha1.c \ ../t35.c \ ../tap.c \ ../xdlc.c \ @@ -1,6 +1,8 @@ /* * FIPS-180-1 compliant SHA-1 implementation * + * $Id$ + * * Copyright (C) 2001-2003 Christophe Devine * * This program is free software; you can redistribute it and/or modify @@ -25,7 +27,7 @@ #include <string.h> #include <glib.h> -#include "sha1.h" +#include <epan/sha1.h> #define GET_UINT32(n,b,i) \ { \ @@ -1,6 +1,8 @@ /* * FIPS-180-1 compliant SHA-1 implementation * + * $Id$ + * * Copyright (C) 2001-2003 Christophe Devine * * This program is free software; you can redistribute it and/or modify |