summaryrefslogtreecommitdiff
path: root/security/krb5/files
diff options
context:
space:
mode:
authorJacques Vidrine <nectar@FreeBSD.org>2001-03-02 17:33:57 +0000
committerJacques Vidrine <nectar@FreeBSD.org>2001-03-02 17:33:57 +0000
commitddfc9c62a8c26f290d4c0a4bcaa5f93aef6e96fd (patch)
tree526e61418f9e1047bf31103b1833b06bd0741353 /security/krb5/files
parentInstall in ${PREFIX}/share/fonts/TrueType, instead of (diff)
Update 1.2.1 -> 1.2.2
Notes
Notes: svn path=/head/; revision=38988
Diffstat (limited to 'security/krb5/files')
-rw-r--r--security/krb5/files/patch-au19
-rw-r--r--security/krb5/files/patch-bc28
2 files changed, 0 insertions, 47 deletions
diff --git a/security/krb5/files/patch-au b/security/krb5/files/patch-au
deleted file mode 100644
index b408c4a3750d..000000000000
--- a/security/krb5/files/patch-au
+++ /dev/null
@@ -1,19 +0,0 @@
-*** appl/bsd/forward.c.ORIG Fri Feb 6 19:41:16 1998
---- appl/bsd/forward.c Tue Jun 30 19:46:01 1998
-***************
-*** 51,57 ****
- */
-
- sprintf(ccname, "FILE:/tmp/krb5cc_p%d", getpid());
-! setenv("KRB5CCNAME", ccname, 0);
-
- if (retval = krb5_cc_resolve(context, ccname, ccache))
- goto cleanup;
---- 51,57 ----
- */
-
- sprintf(ccname, "FILE:/tmp/krb5cc_p%d", getpid());
-! setenv("KRB5CCNAME", ccname, 1);
-
- if (retval = krb5_cc_resolve(context, ccname, ccache))
- goto cleanup;
diff --git a/security/krb5/files/patch-bc b/security/krb5/files/patch-bc
deleted file mode 100644
index c80d9411629b..000000000000
--- a/security/krb5/files/patch-bc
+++ /dev/null
@@ -1,28 +0,0 @@
---- appl/bsd/krshd.c~ Thu Jun 29 22:27:05 2000
-+++ appl/bsd/krshd.c Sat Jan 6 12:57:23 2001
-@@ -160,6 +160,16 @@
- Key_schedule v4_schedule;
- #endif
-
-+#ifdef HAVE_PATHS_H
-+#include <paths.h>
-+#endif
-+
-+#if defined(_PATH_NOLOGIN)
-+#define NOLOGIN _PATH_NOLOGIN
-+#else
-+#define NOLOGIN "/etc/nologin"
-+#endif
-+
- #include "defines.h"
-
- #if HAVE_ARPA_NAMESER_H
-@@ -1119,7 +1129,7 @@
- goto signout_please;
- }
-
-- if (pwd->pw_uid && !access("/etc/nologin", F_OK)) {
-+ if (pwd->pw_uid && !access(NOLOGIN, F_OK)) {
- error("Logins currently disabled.\n");
- goto signout_please;
- }