Merge pull request #6 from matt-sullivan/master

Fix SSPIException serialization bug due to typo.
This commit is contained in:
Kevin Thompson
2017-04-30 16:39:25 -04:00
committed by GitHub

View File

@@ -35,7 +35,7 @@ namespace NSspi
protected SSPIException( SerializationInfo info, StreamingContext context )
: base( info, context )
{
this.message = info.GetString( "messsage" );
this.message = info.GetString("message");
this.errorCode = (SecurityStatus)info.GetUInt32( "errorCode" );
}