diff options
author | markm <markm@FreeBSD.org> | 2001-02-14 19:54:36 +0000 |
---|---|---|
committer | markm <markm@FreeBSD.org> | 2001-02-14 19:54:36 +0000 |
commit | b1b1c5546729eb1039cf848c909eec70a3e85cf0 (patch) | |
tree | a52b0248c93512abb5299fcd513f22384a58c4dc | |
parent | 882e15747fb1f7be5e384855bcdd663b4a49876c (diff) | |
download | FreeBSD-src-b1b1c5546729eb1039cf848c909eec70a3e85cf0.zip FreeBSD-src-b1b1c5546729eb1039cf848c909eec70a3e85cf0.tar.gz |
Fix a "make world"-breaking inconsistency for those folks making
a world with both KRB4 and KRB5.
-rw-r--r-- | crypto/heimdal/lib/roken/make-print-version.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/crypto/heimdal/lib/roken/make-print-version.c b/crypto/heimdal/lib/roken/make-print-version.c index b29cf31..d7c8cf9 100644 --- a/crypto/heimdal/lib/roken/make-print-version.c +++ b/crypto/heimdal/lib/roken/make-print-version.c @@ -29,6 +29,8 @@ * 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$ */ #ifdef HAVE_CONFIG_H @@ -42,7 +44,7 @@ RCSID("$Id: make-print-version.c,v 1.3 2000/08/16 11:30:04 assar Exp $"); extern const char *heimdal_version; #endif #ifdef KRB4 -extern char *krb4_version; +extern const char *krb4_version; #endif #include <version.h> |