From fbe89ed67be38ba790a0d540275f346a11cd7439 Mon Sep 17 00:00:00 2001 From: "Bruno G. Albuquerque" Date: Sun, 25 Jan 2004 11:03:23 +0000 Subject: [PATCH] We forgot about the B_MIME_STRING_TYPE when creating indices and the BEOS:APP_SIG index was failing to be created. It looks the registrar calls the index creation with that type although it is not directly available in the command line tool mkindex, for example. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@6274 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/file_systems/bfs/Index.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/add-ons/kernel/file_systems/bfs/Index.cpp b/src/add-ons/kernel/file_systems/bfs/Index.cpp index ec8c1df6d8..832e6be10a 100644 --- a/src/add-ons/kernel/file_systems/bfs/Index.cpp +++ b/src/add-ons/kernel/file_systems/bfs/Index.cpp @@ -185,6 +185,7 @@ Index::Create(Transaction *transaction, const char *name, uint32 type) mode = S_DOUBLE_INDEX; break; case B_STRING_TYPE: + case B_MIME_STRING_TYPE: // XXX Note Index::Type() will always return B_STRING_TYPE. mode = S_STR_INDEX; break; default: