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
1a7126d9
...
1a7126d9c0a2292a3f02621a244e64e212bd01cb
authored
2002-03-08 22:42:28 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(pop3d_apopuser): Changed scope of auto variable rc
1 parent
273b365c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
2 deletions
pop3d/apop.c
pop3d/apop.c
View file @
1a7126d
...
...
@@ -46,7 +46,6 @@ char *
pop3d_apopuser
(
const
char
*
user
)
{
char
*
password
;
int
rc
;
char
buf
[
POP_MAXCMDLEN
];
#ifdef USE_DBM
...
...
@@ -54,7 +53,7 @@ pop3d_apopuser (const char *user)
DBM_FILE
db
;
DBM_DATUM
key
,
data
;
rc
=
mu_dbm_open
(
APOP_PASSFILE
,
&
db
,
MU_STREAM_READ
,
0600
);
int
rc
=
mu_dbm_open
(
APOP_PASSFILE
,
&
db
,
MU_STREAM_READ
,
0600
);
if
(
rc
)
{
if
(
rc
==
-
1
)
...
...
Please
register
or
sign in
to post a comment