Thus said "Andy Bradford" on 02 Nov 2013 10:07:30 -0600: > I'm now investigating why it didn't prompt me to save the password (it > has nothing to do with your change), but you'll notice that it did > prompt me twice.
Haha, it was not prompting me because I entered the same failed password, so it didn't prompt to save it. But, even after entering a different password it didn't prompt so save. This is because user_select() was being called after url_parse(), and user_select calls url_parse(0, 0) which resets the g.urlFlags, which in turn disables URL/password saving. $ fossil sync Sync with http://tester@localhost:8081/ Round-trips: 1 Artifacts sent: 0 received: 0 Error: login failed password for tester: remember password (Y/n)? y Round-trips: 2 Artifacts sent: 0 received: 0 Error: login failed password for tester: remember password (Y/n)? y Round-trips: 4 Artifacts sent: 0 received: 2 Sync finished with 1972 bytes sent, 1493 bytes received Looks good. Time to check some of the other cases. Andy -- TAI64 timestamp: 4000000052752f34 _______________________________________________ fossil-users mailing list [email protected] http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

