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
d50a67c3
...
d50a67c39a62718057ebd8f27fbc6e95e24b89bc
authored
2001-07-02 14:17:59 +0000
by
Alain Magloire
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
* mail/util.c (util_strupper): The first implementation was
buggy, corrected.
1 parent
05aed652
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
2 deletions
ChangeLog
mail/mail.h
mail/util.c
ChangeLog
View file @
d50a67c
2001-07-01 Alain Magloire
* mail/util.c (util_strupper): The first implementation was
buggy, corrected.
2001-07-01 Alain Magloire
* mailbox2/pop3/*: Pop3 functions are thread-safe and cancel-safe.
The problem is monitor.h, we will probably end up doing a monitor.h.in
and set at compile time if threading is enable or not.
...
...
mail/mail.h
View file @
d50a67c
...
...
@@ -224,6 +224,7 @@ void util_slist_add __P((list_t *list, char *value));
void
util_slist_destroy
__P
((
list_t
*
list
));
char
*
util_slist_to_string
__P
((
list_t
list
,
char
*
delim
));
void
util_strcat
__P
((
char
**
dest
,
char
*
str
));
void
util_strupper
__P
((
char
*
str
));
void
util_escape_percent
__P
((
char
**
str
));
char
*
util_outfolder_name
__P
((
char
*
str
));
void
util_save_outgoing
__P
((
message_t
msg
,
char
*
savefile
));
...
...
mail/util.c
View file @
d50a67c
...
...
@@ -699,8 +699,10 @@ util_strupper (char *s)
{
if
(
s
)
{
while
(
s
++
)
*
s
=
toupper
((
int
)
*
s
);
int
i
;
int
len
=
strlen
(
s
);
for
(
i
=
0
;
i
<
len
;
i
++
)
s
[
i
]
=
toupper
((
int
)
s
[
i
]);
}
}
...
...
Please
register
or
sign in
to post a comment