Age | Commit message (Collapse) | Author | |
---|---|---|---|
2022-01-20 | don't print "No config file found..." message | Sigrid Solveig Haflínudóttir | |
On systems where musl is used as the libc, printf on pipe causes libc to check whether the output is a terminal (by calling ioctl TIOCGWINSZ) which results in broken pipe when an "OK" message is written. Creating an empty config file was the workaround, but it probably makes more sense to just disable the message altogether, as it's not supposed to be seen by the user regardless. openat(AT_FDCWD, "/home/ftrvx/.gnupg/pinentry-dmenu.conf", O_RDONLY|O_LARGEFILE) = -1 ENOENT (No such file or directory) ioctl(1, TIOCGWINSZ, 0x7ff2ba8a98) = -1 ENOTTY (Not a tty) writev(1, [{iov_base="", iov_len=0}, {iov_base="No config file found. Use defaul"..., iov_len=36}], 2) = 36 brk(NULL) = 0x558549b000 brk(0x55854a0000) = 0x55854a0000 getuid() = 1000 mlock(0x558549b020, 16384) = 0 geteuid() = 1000 getuid() = 1000 geteuid() = 1000 getuid() = 1000 geteuid() = 1000 dup(0) = 3 dup(1) = 4 write(4, "OK Pleased to meet you, process "..., 37) = -1 EPIPE (Broken pipe) --- SIGPIPE {si_signo=SIGPIPE, si_code=SI_USER, si_pid=25113, si_uid=1000} --- | |||
2020-05-23 | Prevent duplicated uses of pinentry | Moritz Luedecke | |
2020-05-23 | Remove empty spaces | Moritz Luedecke | |
2019-01-24 | fix typo in the config 'bottom' | Maxim Baz | |
2018-02-02 | Regard GNUPGHOME | Moritz Luedecke | |
2018-01-25 | Add repeat function | Moritz Luedecke | |
2018-01-25 | Change the approach of prompt setup | Moritz Luedecke | |
2018-01-25 | Add new global variable pin_len | Moritz Luedecke | |
2018-01-25 | Set pinentry->result | Moritz Luedecke | |
2017-09-30 | Remove useless comment | Moritz Luedecke | |
2017-09-30 | Use the right buffer size to paste more than twelve characters | Moritz Luedecke | |
2017-09-25 | Rewrite a comment and delete a unnecessary whitespace | Moritz Luedecke | |
2017-09-25 | Add key bindings from dmenu | Moritz Luedecke | |
2017-09-24 | Don't delete the whole suffix when remove a symbol in the middle of the ↵ | Moritz Luedecke | |
passphrase | |||
2017-09-15 | Move all config variables into config.h and rename topbar to buttom | Moritz Luedecke | |
2017-09-11 | Fix indentation | Moritz Luedecke | |
2017-09-10 | Only allocate memory if needed | Moritz Luedecke | |
2017-09-10 | Add paste with Ctrl+V | Moritz Luedecke | |
2017-09-10 | Split keypress function in a WinConfirm and a WinPin branch | Moritz Luedecke | |
2017-09-10 | Bracket the parameter for sizeof | Moritz Luedecke | |
2017-09-05 | You can abort the dialog and password prompt with CTRL+C | Moritz Luedecke | |
2017-09-05 | Get out the home dir even if the user used sudo or logged in as root | Moritz Luedecke | |
2017-08-28 | Fix memory leak | Moritz Luedecke | |
2017-08-27 | Add repeat functionality | Moritz Luedecke | |
2017-08-27 | Use secure buffer from pinentry | Moritz Luedecke | |
2017-08-21 | Reformat comments | Moritz Luedecke | |
2017-08-20 | Eliminate useless checks | Moritz Luedecke | |
2017-08-20 | Get winid from pinentry instead of dealing it by itself | Moritz Luedecke | |
2017-08-20 | Remove unneded assignment | Moritz Luedecke | |
2017-08-20 | Replace newline characters with whitespace | Moritz Luedecke | |
2017-08-20 | Add cursor | Moritz Luedecke | |
2017-08-20 | Remove a delete note | Moritz Luedecke | |
2017-08-20 | Remove unused variable and fix a warning | Moritz Luedecke | |
2017-08-20 | Rename option windowed to embedded | Moritz Luedecke | |
2017-08-20 | Catch parameters '-W' and '--parent-wid' to get the window id | Moritz Luedecke | |
2017-08-20 | Format defines | Moritz Luedecke | |
2017-08-20 | Set config path to ~/.gnupg/pinentry-dmenu.conf | Moritz Luedecke | |
2017-08-20 | Get settings from config file and extend color scheme | Moritz Luedecke | |
2017-08-15 | Fix uninitialized variable when call pinentry without description | Moritz Luedecke | |
2017-08-15 | Remove unused code | Moritz Luedecke | |
2017-08-10 | Add description at the right side | Moritz Luedecke | |
2017-08-01 | Add confirm dialog | Moritz Luedecke | |
2017-08-01 | Revert some changes and add old code from dmenu | Moritz Luedecke | |
2017-07-30 | Add monitor support | Moritz Luedecke | |
2017-07-30 | Fix code formation | Moritz Luedecke | |