Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: HaikuArchives/Hare
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 94caa42c80e8
Choose a base ref
...
head repository: HaikuArchives/Hare
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: daebfdf855b1
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 24, 2021

  1. Fix search string in query for executable (#37)

    * Fix search string in query for executable
    
    * Uncomment FSS_EXPORT that I forgot to undo before committing
    scottmc authored Oct 24, 2021
    Copy the full SHA
    daebfdf View commit details
Showing with 2 additions and 2 deletions.
  1. +1 −1 src/libHare/AEEncoder.cpp
  2. +1 −1 src/libHare/AEEncoder.h
2 changes: 1 addition & 1 deletion src/libHare/AEEncoder.cpp
Original file line number Diff line number Diff line change
@@ -345,7 +345,7 @@ AEEncoder::QueryForExecutable(const char* executable, BVolume* volume,
query.PushString(executable);
query.PushOp(B_EQ);
query.PushAttr("BEOS:TYPE");
query.PushString("application/x-vnd.Be-elfexecutable");
query.PushString("application/x-vnd.be-elfexecutable");
query.PushOp(B_EQ);
query.PushOp(B_AND);

2 changes: 1 addition & 1 deletion src/libHare/AEEncoder.h
Original file line number Diff line number Diff line change
@@ -63,6 +63,6 @@ class AEEncoder {
BVolume* volume, char* path);
};

// extern "C" __FSS_EXPORT AEEncoder* load_encoder();
extern "C" __FSS_EXPORT AEEncoder* load_encoder();

#endif