From 68344a95478e7f7a30cc2d93820595aad7e7bc5b Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Tue, 23 Oct 2001 10:23:32 +0000 Subject: [PATCH] __FBSDID() (second half of src/lib/libcrypt changes) --- secure/lib/libcrypt/blowfish.c | 5 +++-- secure/lib/libcrypt/crypt-blowfish.c | 5 +++-- secure/lib/libcrypt/crypt-des.c | 6 ++++-- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/secure/lib/libcrypt/blowfish.c b/secure/lib/libcrypt/blowfish.c index 3d74c05c0f21..d4e4faec863d 100644 --- a/secure/lib/libcrypt/blowfish.c +++ b/secure/lib/libcrypt/blowfish.c @@ -29,10 +29,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + /* * This code is derived from section 14.3 and the given source * in section V of Applied Cryptography, second edition. diff --git a/secure/lib/libcrypt/crypt-blowfish.c b/secure/lib/libcrypt/crypt-blowfish.c index 6893da3416de..6add0f0662f6 100644 --- a/secure/lib/libcrypt/crypt-blowfish.c +++ b/secure/lib/libcrypt/crypt-blowfish.c @@ -26,10 +26,11 @@ * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. - * - * $FreeBSD$ */ +#include +__FBSDID("$FreeBSD$"); + /* This password hashing algorithm was designed by David Mazieres * and works as follows: * diff --git a/secure/lib/libcrypt/crypt-des.c b/secure/lib/libcrypt/crypt-des.c index 634a1ad9a569..5538cc84664d 100644 --- a/secure/lib/libcrypt/crypt-des.c +++ b/secure/lib/libcrypt/crypt-des.c @@ -36,8 +36,6 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $FreeBSD$ - * * This is an original implementation of the DES and the crypt(3) interfaces * by David Burren . * @@ -57,6 +55,10 @@ * addressed as arrays of u_int32_t's (ie. the CPU is not picky about * alignment). */ + +#include +__FBSDID("$FreeBSD$"); + #include #include #include