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
62ec9eff
...
62ec9eff1a5b226e85d824bc15d73bde75c5b8dd
authored
2002-08-26 17:06:32 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(imap4d_append0): Skip leading whitespace.
1 parent
da88ef54
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
imap4d/append.c
imap4d/append.c
View file @
62ec9ef
...
...
@@ -82,6 +82,9 @@ imap4d_append0 (mailbox_t mbox, int flags, char *text)
return
1
;
}
while
(
*
text
&&
isspace
(
*
text
))
text
++
;
/* If a date_time is specified, the internal date SHOULD be set in the
resulting message; otherwise, the internal date of the resulting
message is set to the current date and time by default. */
...
...
@@ -126,4 +129,3 @@ imap4d_append0 (mailbox_t mbox, int flags, char *text)
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment