aboutsummaryrefslogtreecommitdiff
path: root/sysutils/screen/files/patch-attacher.c
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2011-01-04 03:28:30 +0000
committerCy Schubert <cy@FreeBSD.org>2011-01-04 03:28:30 +0000
commit4d5ee7102d926d8556744b443ba1c64fedaf363d (patch)
tree129a526e37a98a88f5ae83f92e7aa30fb05d86c8 /sysutils/screen/files/patch-attacher.c
parent2b5f462449c77373ebbd9316127ba4ee65e1d0ce (diff)
downloadports-4d5ee7102d926d8556744b443ba1c64fedaf363d.tar.gz
ports-4d5ee7102d926d8556744b443ba1c64fedaf363d.zip
Notes
Diffstat (limited to 'sysutils/screen/files/patch-attacher.c')
-rw-r--r--sysutils/screen/files/patch-attacher.c24
1 files changed, 24 insertions, 0 deletions
diff --git a/sysutils/screen/files/patch-attacher.c b/sysutils/screen/files/patch-attacher.c
new file mode 100644
index 000000000000..0f89189898e3
--- /dev/null
+++ b/sysutils/screen/files/patch-attacher.c
@@ -0,0 +1,24 @@
+--- attacher.c.orig 2003-09-08 07:24:48.000000000 -0700
++++ attacher.c 2011-01-02 21:42:39.547897531 -0800
+@@ -662,7 +662,7 @@
+ printf("\n");
+
+ prg = getenv("LOCKPRG");
+- if (prg && strcmp(prg, "builtin") && !access(prg, X_OK))
++ if (prg && (strcmp(prg, "builtin") || strcmp(prg,"builtin-passwd")) && !access(prg, X_OK))
+ {
+ signal(SIGCHLD, SIG_DFL);
+ debug1("lockterminal: '%s' seems executable, execl it!\n", prg);
+@@ -676,7 +676,11 @@
+ setuid(real_uid); /* this should be done already */
+ #endif
+ closeallfiles(0); /* important: /etc/shadow may be open */
+- execl(prg, "SCREEN-LOCK", NULL);
++ if (strcmp(prg,"builtin-passwd"))
++ /* use system passsword for lock */
++ execl(prg, "SCREEN-LOCK", "-p", "-n", NULL);
++ else
++ execl(prg, "SCREEN-LOCK", NULL);
+ exit(errno);
+ }
+ if (pid == -1)