Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
96a185d6
...
96a185d6b067daf47b3463da809d93ce35a1f04c
authored
2002-06-27 09:12:02 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_login): Removed FIXME note: the user need not have a homedir at all.
1 parent
5b6143ea
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
imap4d/login.c
imap4d/login.c
View file @
96a185d
...
...
@@ -147,9 +147,8 @@ imap4d_login (struct imap4d_command *command, char *arg)
setuid
(
pw
->
pw_uid
);
homedir
=
mu_normalize_path
(
strdup
(
pw
->
pw_dir
),
"/"
);
/* FIXME: Check for errors. */
chdir
(
homedir
);
namespace_init
(
pw
->
pw_dir
);
namespace_init
(
pw
->
pw_dir
);
syslog
(
LOG_INFO
,
"User '%s' logged in"
,
username
);
return
util_finish
(
command
,
RESP_OK
,
"Completed"
);
}
...
...
Please
register
or
sign in
to post a comment