diff options
author | unknown <pekka@orca.ndb.mysql.com> | 2006-07-11 17:07:23 +0200 |
---|---|---|
committer | unknown <pekka@orca.ndb.mysql.com> | 2006-07-11 17:07:23 +0200 |
commit | 27721ce53fb764fccb0ce44ee3b416b616262c75 (patch) | |
tree | d5e03114dae9f85ec7b12c47b893c84280e928f8 /ndb | |
parent | 3ee3b7438a898c3fe12c03f238b41ffd76b702a7 (diff) | |
download | mariadb-git-27721ce53fb764fccb0ce44ee3b416b616262c75.tar.gz |
ndb - (4.1) trivial fix to error.log (wday=0 was printed as "x")
ndb/src/kernel/error/TimeModule.cpp:
0=Sunday
Diffstat (limited to 'ndb')
-rw-r--r-- | ndb/src/kernel/error/TimeModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ndb/src/kernel/error/TimeModule.cpp b/ndb/src/kernel/error/TimeModule.cpp index 4bd8e3daf99..c4e569e7221 100644 --- a/ndb/src/kernel/error/TimeModule.cpp +++ b/ndb/src/kernel/error/TimeModule.cpp @@ -22,7 +22,7 @@ static const char* cMonth[] = { "x", "January", "February", "Mars", "April", "May", "June", "July", "August", "September", "October", "November", "December"}; -static const char* cDay[] = { "x", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", +static const char* cDay[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"}; static const char* cHour[] = { "00","01","02","03","04","05","06","07","08","09","10","11","12", |