containers / bubblewrap

Low-level unprivileged sandboxing tool used by Flatpak and similar projects
Other
3.9k stars 238 forks source link

Fix SetupOpFlag value to be proper format #636

Closed alexlarsson closed 3 months ago

alexlarsson commented 3 months ago

For some reason the second flags is "2<<0", but really flags should be 1<<N, and in this case 1<<1. Both happen to be the same value, so its not like this matter deeply, but lets fix it if we do later changes.