Fix build warnings

Change-Id: Ia5b8da2cfed7ae02c9e8e03e8bae22b2a68684a0
This commit is contained in:
Glenn Kasten 2012-01-10 17:54:27 -08:00
parent 5873400ac8
commit 6c76095496

View File

@ -581,7 +581,7 @@ static ResponseCode get(KeyStore* keyStore, int sock, uid_t uid, Value* keyName,
static ResponseCode insert(KeyStore* keyStore, int sock, uid_t uid, Value* keyName, Value* val) {
char filename[NAME_MAX];
encode_key(filename, uid, keyName);
Blob keyBlob(val->value, val->length, 0, NULL);
Blob keyBlob(val->value, val->length, NULL, 0);
return keyStore->put(filename, &keyBlob);
}