~ruther/guix-local

ref: 18d50d76216f5c207d8178cb2d2d2f31eb8fe3eb guix-local/distro/packages/patches/lsh-no-root-login.patch -rw-r--r-- 444 bytes
18d50d76 — Ludovic Courtès distro: Add GNU lsh. 13 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Correctly handle the `--no-root-login' option.

--- lsh-2.0.4/src/lshd.c	2006-05-01 13:47:44.000000000 +0200
+++ lsh-2.0.4/src/lshd.c	2009-09-08 12:20:36.000000000 +0200
@@ -758,6 +758,10 @@ main_argp_parser(int key, char *arg, str
       self->allow_root = 1;
       break;
 
+    case OPT_NO_ROOT_LOGIN:
+      self->allow_root = 0;
+      break;
+
     case OPT_KERBEROS_PASSWD:
       self->pw_helper = PATH_KERBEROS_HELPER;
       break;