diff options
-rw-r--r-- | release/sysinstall/dist.c | 5 | ||||
-rw-r--r-- | release/sysinstall/dist.h | 1 | ||||
-rw-r--r-- | usr.sbin/sysinstall/dist.c | 5 | ||||
-rw-r--r-- | usr.sbin/sysinstall/dist.h | 1 |
4 files changed, 8 insertions, 4 deletions
diff --git a/release/sysinstall/dist.c b/release/sysinstall/dist.c index ee82106..16b7065 100644 --- a/release/sysinstall/dist.c +++ b/release/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.116 1997/09/18 17:54:36 jkh Exp $ + * $Id: dist.c,v 1.117 1997/10/04 08:58:16 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -91,9 +91,10 @@ static Distribution DistTable[] = { /* The DES distribution (not for export!) */ static Distribution DESDistTable[] = { { "des", "/", &DESDists, DIST_DES_DES, NULL }, -{ "kerbero", "/", &DESDists, DIST_DES_KERBEROS, NULL }, +{ "krb", "/", &DESDists, DIST_DES_KERBEROS, NULL }, { "ssecure", "/usr/src", &DESDists, DIST_DES_SSECURE, NULL }, { "scrypto", "/usr/src", &DESDists, DIST_DES_SCRYPTO, NULL }, +{ "skerbero", "/usr/src", &DESDists, DIST_DES_SKERBEROS, NULL }, { NULL }, }; diff --git a/release/sysinstall/dist.h b/release/sysinstall/dist.h index 470c095..2da05df 100644 --- a/release/sysinstall/dist.h +++ b/release/sysinstall/dist.h @@ -36,6 +36,7 @@ #define DIST_DES_SCRYPTO 0x0002 #define DIST_DES_SSECURE 0x0004 #define DIST_DES_KERBEROS 0x0008 +#define DIST_DES_SKERBEROS 0x0010 /* Subtypes for SRC distribution */ #define DIST_SRC_BASE 0x00001 diff --git a/usr.sbin/sysinstall/dist.c b/usr.sbin/sysinstall/dist.c index ee82106..16b7065 100644 --- a/usr.sbin/sysinstall/dist.c +++ b/usr.sbin/sysinstall/dist.c @@ -4,7 +4,7 @@ * This is probably the last program in the `sysinstall' line - the next * generation being essentially a complete rewrite. * - * $Id: dist.c,v 1.116 1997/09/18 17:54:36 jkh Exp $ + * $Id: dist.c,v 1.117 1997/10/04 08:58:16 jkh Exp $ * * Copyright (c) 1995 * Jordan Hubbard. All rights reserved. @@ -91,9 +91,10 @@ static Distribution DistTable[] = { /* The DES distribution (not for export!) */ static Distribution DESDistTable[] = { { "des", "/", &DESDists, DIST_DES_DES, NULL }, -{ "kerbero", "/", &DESDists, DIST_DES_KERBEROS, NULL }, +{ "krb", "/", &DESDists, DIST_DES_KERBEROS, NULL }, { "ssecure", "/usr/src", &DESDists, DIST_DES_SSECURE, NULL }, { "scrypto", "/usr/src", &DESDists, DIST_DES_SCRYPTO, NULL }, +{ "skerbero", "/usr/src", &DESDists, DIST_DES_SKERBEROS, NULL }, { NULL }, }; diff --git a/usr.sbin/sysinstall/dist.h b/usr.sbin/sysinstall/dist.h index 470c095..2da05df 100644 --- a/usr.sbin/sysinstall/dist.h +++ b/usr.sbin/sysinstall/dist.h @@ -36,6 +36,7 @@ #define DIST_DES_SCRYPTO 0x0002 #define DIST_DES_SSECURE 0x0004 #define DIST_DES_KERBEROS 0x0008 +#define DIST_DES_SKERBEROS 0x0010 /* Subtypes for SRC distribution */ #define DIST_SRC_BASE 0x00001 |