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
7dd2143a
...
7dd2143ac1972cf3311e2ad46a6a206ae8973182
authored
2003-01-28 14:24:50 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Removed unneded colon in the argument to perror.
1 parent
32c4d30c
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
13 deletions
comsat/comsat.c
imap4d/imap4d.c
comsat/comsat.c
View file @
7dd2143
...
...
@@ -215,7 +215,7 @@ comsat_daemon_init (void)
first three one, in, out, err. Do not do the chdir("/"). */
if
(
daemon
(
1
,
0
)
<
0
)
{
perror
(
_
(
"failed to become a daemon
:
"
));
perror
(
_
(
"failed to become a daemon"
));
exit
(
EXIT_FAILURE
);
}
}
...
...
@@ -603,14 +603,3 @@ mailbox_path (const char *user)
return
mailbox_name
;
}
#if 0
/* A debugging hook */
volatile int _st=0;
void
stop()
{
syslog (LOG_ALERT, _("waiting for debug"));
while (!_st)
_st=_st;
}
#endif
...
...
imap4d/imap4d.c
View file @
7dd2143
...
...
@@ -279,7 +279,7 @@ imap4d_daemon_init (void)
first three one, in, out, err */
if
(
daemon
(
0
,
0
)
<
0
)
{
perror
(
_
(
"fork failed
:
"
));
perror
(
_
(
"fork failed"
));
exit
(
1
);
}
...
...
Please
register
or
sign in
to post a comment