summaryrefslogblamecommitdiff
path: root/system/openssh/fix-utmpx.patch
blob: d04742e2f9123a2f60b95264e49d1cce1c585b7c (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

                                                                           
                      










                                         
--- 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
@@ -1663,7 +1663,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;