Skip to content

Commit

Permalink
Fixed the number formatting in the SSPIException so that the error co…
Browse files Browse the repository at this point in the history
…de comes out '0x....'.
  • Loading branch information
antiduh committed Jul 11, 2014
1 parent 4bfe7d8 commit 1374758
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NSspi/SSPIException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public override string Message
get
{
return string.Format(
"{0}. Error Code = '{1:X}' - \"{2}\".",
"{0}. Error Code = '0x{1:X}' - \"{2}\".",
this.message,
this.errorCode,
EnumMgr.ToText(this.errorCode)
Expand Down

0 comments on commit 1374758

Please sign in to comment.