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
9bffe719
...
9bffe719fd75b6f9827af0c4197a3d4d11a04b57
authored
2002-02-09 03:31:03 +0000
by
Sam Roberts
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
gcc doesn't like signed chars as array indexes, they could be negative
1 parent
9be820ee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
mailbox/url_mbox.c
mailbox/url_mbox.c
View file @
9bffe71
...
...
@@ -106,8 +106,9 @@ static int transtab[] = {
/* Forward Indexing */
static
char
*
_url_path_index
(
const
char
*
spooldir
,
const
char
*
user
,
int
index_depth
)
_url_path_index
(
const
char
*
spooldir
,
const
char
*
i
user
,
int
index_depth
)
{
const
unsigned
char
*
user
=
(
const
unsigned
char
*
)
iuser
;
int
i
,
ulen
=
strlen
(
user
);
char
*
mbox
,
*
p
;
...
...
@@ -134,8 +135,9 @@ _url_path_index (const char *spooldir, const char *user, int index_depth)
/* Reverse Indexing */
static
char
*
_url_path_rev_index
(
const
char
*
spooldir
,
const
char
*
user
,
int
index_depth
)
_url_path_rev_index
(
const
char
*
spooldir
,
const
char
*
i
user
,
int
index_depth
)
{
const
unsigned
char
*
user
=
(
const
unsigned
char
*
)
iuser
;
int
i
,
ulen
=
strlen
(
user
);
char
*
mbox
,
*
p
;
...
...
Please
register
or
sign in
to post a comment