aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--file.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/file.c b/file.c
index 6d3a382..c1be464 100644
--- a/file.c
+++ b/file.c
@@ -1,4 +1,4 @@
-/* $Id: file.c,v 1.98 2002/09/10 18:11:30 ukai Exp $ */
+/* $Id: file.c,v 1.99 2002/09/10 18:21:36 ukai Exp $ */
#include "fm.h"
#include <sys/types.h>
#include "myctype.h"
@@ -1470,7 +1470,8 @@ getAuthCookie(struct http_auth *hauth, char *auth_header,
else
ss = find_auth_cookie(pu->host, pu->port, pu->file, realm);
if (realm && ss == NULL) {
- if (find_auth_user_passwd(pu->host, pu->port, pu->file, realm,
+ if (!a_found &&
+ find_auth_user_passwd(pu->host, pu->port, pu->file, realm,
&uname, &pwd)) {
/* found username & password in passwd file */ ;
}