Remove duplicate fclose()

git-svn-id: https://proxytunnel.svn.sourceforge.net/svnroot/proxytunnel/trunk/proxytunnel@214 bc163920-b10d-0410-b2c5-a5491ca2ceef
This commit is contained in:
Mark Janssen 2008-01-27 16:23:46 +00:00
parent 87c75b32ff
commit 3c205207fc

View file

@ -553,7 +553,6 @@ static char *getCredentialsFromFile( const char* filename, char **user, char **p
if ( *user == NULL && *pass == NULL && *remuser == NULL && *rempass == NULL) {
return strdup( "proxy_user & proxy_passwd not found in password file" );
} else {
fclose( pwfile );
return NULL;
}
}