diff options
author | INSUN PYO <insun.pyo@samsung.com> | 2018-02-28 11:29:47 +0900 |
---|---|---|
committer | INSUN PYO <insun.pyo@samsung.com> | 2018-02-28 11:37:57 +0900 |
commit | 8f59360995bebf5c88544a1d42ad85eea2aed12f (patch) | |
tree | ed42559b52e3dc28d1c3b61955ccf14881abad78 /src | |
parent | 6a1aae4339718a3d026c468fb96b84b3e105f9d8 (diff) | |
download | systemd-8f59360995bebf5c88544a1d42ad85eea2aed12f.tar.gz systemd-8f59360995bebf5c88544a1d42ad85eea2aed12f.tar.bz2 systemd-8f59360995bebf5c88544a1d42ad85eea2aed12f.zip |
revert: Description : Adding to enable/disable the multiuser feature.submit/tizen/20180228.050403accepted/tizen/unified/20180301.114103
* I don't revert "unit/user@.service.m4.in (Environment=XDG_RUNTIME_DIR=/run/user/%U)
* If you want to revert this, you should add "session required pam_loginuid.so" to /etc/pam.d/systemd-user
Signed-off-by: INSUN PYO <insun.pyo@samsung.com>
Change-Id: I6f8e132eb46a150968662bc2574fdf85eb715a52
Diffstat (limited to 'src')
-rw-r--r-- | src/core/execute.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/core/execute.c b/src/core/execute.c index e005986de5..4b81c830d5 100644 --- a/src/core/execute.c +++ b/src/core/execute.c @@ -920,7 +920,6 @@ static int setup_pam( parent_pid = getpid(); -#ifdef HAVE_LOGIND pam_pid = fork(); if (pam_pid < 0) { r = -errno; @@ -999,7 +998,6 @@ static int setup_pam( pam_end(handle, pam_code | flags); _exit(ret); } -#endif // HAVE_LOGIND barrier_set_role(&barrier, BARRIER_PARENT); |