diff options
author | Anurag Shekhar <anurag.shekhar@sun.com> | 2009-11-17 17:44:27 +0530 |
---|---|---|
committer | Anurag Shekhar <anurag.shekhar@sun.com> | 2009-11-17 17:44:27 +0530 |
commit | 3d682d355876b81a85570534c2b2695a69f418e8 (patch) | |
tree | b2a37dde236740991ea85f865af19d9343bf192d /storage | |
parent | 2a254a13efaa6e29d98da9d8f33d9228d4a62834 (diff) | |
download | mariadb-git-3d682d355876b81a85570534c2b2695a69f418e8.tar.gz |
fix for pb2 failure after bug#47012 push.
Diffstat (limited to 'storage')
-rw-r--r-- | storage/archive/azio.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/storage/archive/azio.c b/storage/archive/azio.c index 603e328c715..c1dd6e6f38c 100644 --- a/storage/archive/azio.c +++ b/storage/archive/azio.c @@ -70,6 +70,7 @@ int az_open (azio_stream *s, const char *path, int Flags, File fd) s->mode = 'r'; s->version = (unsigned char)az_magic[1]; /* this needs to be a define to version */ s->minor_version= (unsigned char) az_magic[2]; /* minor version */ + s->dirty= AZ_STATE_CLEAN; /* We do our own version of append by nature. |