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
54d98a14
...
54d98a145825e7372a78abeae5e076032e834330
authored
2002-08-13 13:33:39 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mail_set): Fixed inconsistency in passing arguments to strtoul().
1 parent
caf9721f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/set.c
mail/set.c
View file @
54d98a1
...
...
@@ -52,7 +52,7 @@ mail_set (int argc, char **argv)
if
(
i
>=
argc
)
break
;
nval
=
strtoul
(
argv
[
i
],
&
p
,
NULL
);
nval
=
strtoul
(
argv
[
i
],
&
p
,
0
);
if
(
*
p
==
0
)
util_setenv
(
name
,
&
nval
,
Mail_env_number
,
1
);
else
...
...
Please
register
or
sign in
to post a comment