summaryrefslogtreecommitdiff
path: root/system/openssh/fix-utmpx.patch
diff options
context:
space:
mode:
Diffstat (limited to 'system/openssh/fix-utmpx.patch')
-rw-r--r--system/openssh/fix-utmpx.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/system/openssh/fix-utmpx.patch b/system/openssh/fix-utmpx.patch
deleted file mode 100644
index 7f05add35..000000000
--- a/system/openssh/fix-utmpx.patch
+++ /dev/null
@@ -1,14 +0,0 @@
---- openssh-7.7p1/loginrec.c.old 2018-04-02 00:38:28.000000000 -0500
-+++ openssh-7.7p1/loginrec.c 2018-06-15 22:09:00.091482769 -0500
-@@ -1656,7 +1656,11 @@
- const char *ttyn)
- {
- int fd;
-+#if defined(USE_UTMPX)
-+ struct utmpx ut;
-+#else
- struct utmp ut;
-+#endif
- struct sockaddr_storage from;
- socklen_t fromlen = sizeof(from);
- struct sockaddr_in *a4;