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
0bc515ae
...
0bc515ae1a97a594e0db12d0e14b72e4459d1c19
authored
2002-03-28 17:37:54 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(print_dir): Enclose empty filename in doublequotes.
1 parent
d9bffb56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletions
imap4d/list.c
imap4d/list.c
View file @
0bc515a
...
...
@@ -315,9 +315,12 @@ print_dir (const char *ref, const char *file, const char *delim)
strlen
(
ref
)
+
strlen
((
*
ref
)
?
delim
:
""
)
+
strlen
(
file
));
util_send
(
"%s%s%s
\r\n
"
,
ref
,
(
*
ref
)
?
delim
:
""
,
file
);
}
else
else
if
(
*
file
)
util_out
(
RESP_NONE
,
"LIST (
\\
NoSelect)
\"
%s
\"
%s%s%s"
,
delim
,
ref
,
(
*
ref
)
?
delim
:
""
,
file
);
else
util_out
(
RESP_NONE
,
"LIST (
\\
NoSelect)
\"
%s
\"
\"
%s%s
\"
"
,
delim
,
ref
,
(
*
ref
)
?
delim
:
""
);
}
/* Calls the imap_matcher if a match found out the attribute. */
...
...
Please
register
or
sign in
to post a comment