git: 9front

Download patch

ref: a8c3484a6a0fd50f9dbb853eb457e21ebd91ea74
parent: 723cbaa40bf881c7cd70d39249ba6b6b285f5b04
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun May 20 19:22:41 EDT 2018

ape: fix auth.h

--- a/sys/include/ape/auth.h
+++ b/sys/include/ape/auth.h
@@ -63,6 +63,7 @@
 struct Chalstate
 {
 	char	*user;
+	char	*dom;
 	char	chal[MAXCHLEN];
 	int	nchal;
 	void	*resp;
@@ -81,7 +82,7 @@
 	char	resp[MD5LEN];
 };
 
-struct	MSchapreply	/* for protocol "mschap" */
+struct	MSchapreply		/* for protocol "mschap" and "ntlm" */
 {
 	char	LMresp[24];		/* Lan Manager response */
 	char	NTresp[24];		/* NT response */
--