mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[formhist] silly workaround for C++ compiler
This commit is contained in:
parent
91bf93a784
commit
ca1bf5c78d
@ -162,10 +162,12 @@ load_formhist_from_file(void)
|
||||
name = type;
|
||||
|
||||
if (*name == '*') {
|
||||
static char password[] = "password";
|
||||
name++;
|
||||
type = "password";
|
||||
type = password;
|
||||
} else {
|
||||
type = "text";
|
||||
static char text[] = "text";
|
||||
type = text;
|
||||
}
|
||||
|
||||
goto cont;
|
||||
|
Loading…
Reference in New Issue
Block a user