Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Integrated last commit in benoit branch into trunk. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
711675774b78ff4088ca6c6bd35cb706 |
| User & Date: | benoit 2010-07-14 13:27:12.000 |
Context
|
2010-07-20
| ||
| 05:44 | simple doc typo ... (check-in: e3653248ae user: bharder tags: trunk) | |
|
2010-07-14
| ||
| 13:27 | Integrated last commit in benoit branch into trunk. ... (check-in: 711675774b user: benoit tags: trunk) | |
|
2010-07-08
| ||
| 17:57 | Update the built-in sqlite3 to the latest development version. ... (check-in: 1e6ded9856 user: drh tags: trunk) | |
Changes
Changes to src/main.c.
| ︙ | ︙ | |||
226 227 228 229 230 231 232 |
sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0);
g.now = time(0);
g.argc = argc;
g.argv = argv;
if( getenv("GATEWAY_INTERFACE")!=0 ){
zCmdName = "cgi";
}else if( argc<2 ){
| | > > > | 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 |
sqlite3_config(SQLITE_CONFIG_LOG, fossil_sqlite_log, 0);
g.now = time(0);
g.argc = argc;
g.argv = argv;
if( getenv("GATEWAY_INTERFACE")!=0 ){
zCmdName = "cgi";
}else if( argc<2 ){
fprintf(stderr, "Usage: %s COMMAND ...\n"
"\"%s help\" for a list of available commands\n"
"\"%s help COMMAND\" for specific details\n",
argv[0], argv[0], argv[0]);
fossil_exit(1);
}else{
g.fQuiet = find_option("quiet", 0, 0)!=0;
g.fSqlTrace = find_option("sqltrace", 0, 0)!=0;
g.fSqlPrint = find_option("sqlprint", 0, 0)!=0;
g.fHttpTrace = find_option("httptrace", 0, 0)!=0;
g.zLogin = find_option("user", "U", 1);
|
| ︙ | ︙ |