Differences From Artifact [1b7364c2b7]:
- File src/url.c — part of check-in [e94c7cc4de] at 2012-03-19 05:24:43 on branch winFiles — Modify file_simplify_name to accept a parameter used to determine if the trailing slash, if any, should be retained. Make use of this when converting the local root to its canonical form. (user: mistachkin size: 11380) [more...]
To Artifact [06fd3c2d56]:
- File src/url.c — part of check-in [a496d8e88d] at 2012-03-29 14:54:45 on branch mgagnon_fix — Add vim modline everywhere (user: mgagnon size: 11422)
| ︙ | ︙ | |||
392 393 394 395 396 397 398 |
if( (g.urlUser && g.urlUser[0])
&& (g.urlPasswd==0 || g.urlPasswd[0]==0)
&& isatty(fileno(stdin))
){
url_prompt_for_password();
}
}
| > > > > > | 392 393 394 395 396 397 398 399 400 401 402 403 |
if( (g.urlUser && g.urlUser[0])
&& (g.urlPasswd==0 || g.urlPasswd[0]==0)
&& isatty(fileno(stdin))
){
url_prompt_for_password();
}
}
/*
* vim:ts=2:sts=2:et:sw=2:ft=c
*/
|