diff options
author | dt <dt@FreeBSD.org> | 1999-09-21 17:52:05 +0000 |
---|---|---|
committer | dt <dt@FreeBSD.org> | 1999-09-21 17:52:05 +0000 |
commit | ef28ba9c14b840bf927f9f60df0bd078fbb4e871 (patch) | |
tree | 78d28c2a64d20cef71a4eb951e7608cdd0ff2e1a | |
parent | 216c6b2821f75b1d6f5053745f2f54d826fb64cb (diff) | |
download | FreeBSD-src-ef28ba9c14b840bf927f9f60df0bd078fbb4e871.zip FreeBSD-src-ef28ba9c14b840bf927f9f60df0bd078fbb4e871.tar.gz |
Someone changed major numbers of the libraries from 2 to 3 for 0 (zero) reasons.
Revert the major number back to 2.
libcrypt only export one function, before the recent changes and now:
char *crypt(const char *key, const char *salt);
The prototype didn't changed. Internal representation of `char' and `char *'
didn't changed. Therefore, there is no reason to change the version number.
-rw-r--r-- | lib/libcrypt/Makefile | 2 | ||||
-rw-r--r-- | secure/lib/libcrypt/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/libcrypt/Makefile b/lib/libcrypt/Makefile index 25d2549..3742913 100644 --- a/lib/libcrypt/Makefile +++ b/lib/libcrypt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ # -SHLIB_MAJOR= 3 +SHLIB_MAJOR= 2 LIB= scrypt LCRYPTBASE= libcrypt diff --git a/secure/lib/libcrypt/Makefile b/secure/lib/libcrypt/Makefile index 9150791..8cd4eea 100644 --- a/secure/lib/libcrypt/Makefile +++ b/secure/lib/libcrypt/Makefile @@ -2,7 +2,7 @@ # $FreeBSD$ # -SHLIB_MAJOR= 3 +SHLIB_MAJOR= 2 LIB= descrypt LCRYPTBASE= libcrypt |