mirror of
https://github.com/tiyn/slock.git
synced 2025-04-01 15:47:47 +02:00
added secret-password patch
This commit is contained in:
parent
535d3daa33
commit
f6f743c04d
12
config.def.h
12
config.def.h
@ -11,9 +11,13 @@ static const char *colorname[NUMCOLS] = {
|
||||
/* treat a cleared input like a wrong password (color) */
|
||||
static const int failonclear = 1;
|
||||
|
||||
/* length of entires in scom */
s
|
||||
static const int entrylen = 1;
|
||||
/* length of entries in scom */
|
||||
static const int entrylen = 1;
|
||||
|
||||
static const secretpass scom[entrylen] = {
|
||||
struct secretpass {
|
||||
char const *pass;
|
||||
char const *command;
|
||||
} scom = {
|
||||
/* Password command */
|
||||
{ "shutdown", "doas poweroff" },
};
|
||||
"shutdown", "sudo shutdown -h now"
|
||||
};
|
||||
|
6
slock.c
6
slock.c
@ -161,10 +161,8 @@ readpw(Display *dpy, struct xrandr *rr, struct lock **locks, int nscreens,
|
||||
passwd[len] = '\0';
|
||||
errno = 0;
|
||||
|
||||
for (int i = 0; i < entrylen; i++){
|
||||
if (strcmp(scom[i].pass, passwd) == 0){
|
||||
system(scom[i].command);
|
||||
}
|
||||
if (strcmp(scom.pass, passwd) == 0){
|
||||
system(scom.command);
|
||||
}
|
||||
|
||||
if (!(inputhash = crypt(passwd, hash)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user