- CC: Fix typo

client/
        cs_notice.cpp

svn path=/trunk/boinc/; revision=21831
This commit is contained in:
Rom Walton 2010-06-28 15:04:58 +00:00
parent f5dad6fa33
commit dd0cb83107
2 changed files with 7 additions and 1 deletions

View File

@ -4686,3 +4686,9 @@ Charlie 28 Jun 2010
clientgui/
ViewNotices.cpp
Rom 28 Jun 2010
- CC: Fix typo
client/
cs_notice.cpp

View File

@ -175,7 +175,7 @@ static int month_index(char* x) {
if (strstr(x, "Sep")) return 8;
if (strstr(x, "Oct")) return 9;
if (strstr(x, "Nov")) return 10;
if (strstr(x, "Dev")) return 11;
if (strstr(x, "Dec")) return 11;
return 0;
}