diff --git a/NSspi/SSPIException.cs b/NSspi/SSPIException.cs index c8e2938..cdf9004 100644 --- a/NSspi/SSPIException.cs +++ b/NSspi/SSPIException.cs @@ -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" ); }