Skip to content

Commit

Permalink
Revert wrong fix for #648252
Browse files Browse the repository at this point in the history
  • Loading branch information
gonzalop committed Nov 2, 2010
1 parent 7c68d87 commit 339b3f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mcs/class/corlib/System/DateTime.cs
Expand Up @@ -737,7 +737,7 @@ public static DateTime FromBinary (long dateData)
case 0:
return new DateTime (dateData, DateTimeKind.Unspecified);
default:
return new DateTime (dateData & 0x3fffffffffffffff, DateTimeKind.Local);
return new DateTime (dateData & 0x3fffffffffffffff, DateTimeKind.Utc).ToLocalTime ();
}
}

Expand Down

0 comments on commit 339b3f3

Please sign in to comment.