Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set action on lpass help preventing a fallthrough (fixes #386) #385

Merged
merged 3 commits into from
May 17, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# EditorConfig is awesome: http://EditorConfig.org
root = true

[*]
end_of_line = lf
insert_final_newline = true
indent_style = tab
indent_size = 4
charset = utf-8
24 changes: 22 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,33 @@ sudo yum install openssl libcurl libxml2 pinentry xclip openssl-devel libxml2-de
* For Debian:

```
sudo apt-get install openssl libcurl3 libxml2 libssl-dev libxml2-dev libcurl4-openssl-dev pinentry-curses xclip build-essential
sudo apt install --no-install-recommends \
build-essential \
cmake \
libcurl3 \
libcurl4-openssl-dev \
libssl-dev \
libxml2 \
libxml2-dev \
openssl \
pinentry-curses \
pkg-config \
xclip
```

* For Ubuntu:

```
sudo apt-get install openssl libcurl4-openssl-dev libxml2 libssl-dev libxml2-dev pinentry-curses xclip cmake build-essential pkg-config
sudo apt install --no-install-recommends \
cmake \
libcurl4-openssl-dev \
libssl-dev \
libxml2 \
libxml2-dev \
openssl \
pinentry-curses \
pkg-config \
xclip
```

#### Gentoo
Expand Down
2 changes: 2 additions & 0 deletions lpass.c
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,8 @@ static int global_options(int argc, char *argv[])
case 'h':
version();
printf("\n");
help();
return 0;
case '?':
help();
return option == 'h';
Expand Down