Signatures are case insensitive. This should allow Clock to start.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@15654 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stefano Ceccherini
2005-12-22 11:14:06 +00:00
parent 0c19920751
commit 291540f51a
+1 -1
View File
@@ -2457,7 +2457,7 @@ query_for_app(const char *signature, entry_ref *appRef)
if (volume.SetTo(dev_for_path("/boot")) != B_OK
|| query.SetVolume(&volume) != B_OK
|| query.PushAttr("BEOS:APP_SIG") != B_OK
|| query.PushString(signature) != B_OK
|| query.PushString(signature, true) != B_OK
|| query.PushOp(B_EQ) != B_OK
|| query.Fetch() != B_OK) {
error = B_LAUNCH_FAILED_APP_NOT_FOUND;