pass

A stripped down version of the standard unix password manager "pass"
git clone git://nocebo.space/pass
Log | Files | Refs | LICENSE

commit 41a16892758dc58d8410773bd0eedad6bf9ebe72
parent d9c3288a67719934f75745b79dc99efc69010f7e
Author: Naveen Narayanan zerous <zerous@nocebo.space>
Date:   Fri, 29 Dec 2017 12:58:48 +0300

remove redundant debug info

Diffstat:
pass.c | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/pass.c b/pass.c @@ -320,9 +320,6 @@ isinit(void) /* check if .password-store exists */ snprintf(file, sizeof(file), "%s/.password-store", home); -#ifdef DEBUG - printf("filename: %s\n", file); -#endif if ((fp = open(file, O_RDONLY)) != -1 && (!fstat(fp, &sb)) && (S_ISDIR(sb.st_mode))) {