Differences From Artifact [bb1f61e400]:
- File src/sync.c — part of check-in [912ca19510] at 2013-11-08 07:50:24 on branch url-password-fixes — Remove side effect produced when calling with no flags. This permits removal of work around in sync.c. (user: andybradford size: 8632) [more...]
To Artifact [0743c49d9b]:
- File src/sync.c — part of check-in [e747041a72] at 2014-01-29 06:45:30 on branch http-auth — Make HTTP authorization a command line option. Choice will be stored in database until another URL change happens. This could potentially break those who currently rely on the special # character in the password. (user: andybradford size: 8683)
︙ | |||
92 93 94 95 96 97 98 99 100 101 102 103 104 105 | 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 | + | urlOptional = 1; urlFlags = 0; } if( find_option("once",0,0)!=0 ) urlFlags &= ~URL_REMEMBER; if( find_option("private",0,0)!=0 ){ *pSyncFlags |= SYNC_PRIVATE; } g.fUseHttpAuth = find_option("httpauth",0,0)!=0; if( find_option("verbose","v",0)!=0 ){ *pSyncFlags |= SYNC_VERBOSE; } /* The --verily option to sync, push, and pull forces extra igot cards ** to be exchanged. This can overcome malfunctions in the sync protocol. */ if( find_option("verily",0,0)!=0 ){ |
︙ |