Fossil

Check-in [bae2e57901]
Login

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
Comment:Make room for extra argument in array.
Downloads: Tarball | ZIP archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA1: bae2e5790149cdc511e2ddc2d9543ec4c8cad50c
User & Date: andybradford 2014-05-22 04:47:37.389
Context
2014-05-23
05:07
Correct reference to the shun URL. check-in: b2a8924eb2 user: andybradford tags: trunk
2014-05-22
07:46
merge trunk check-in: c7767cc123 user: jan.nijtmans tags: cleanX
05:14
Merge in latest features and fixes. check-in: fbc335d39f user: andybradford tags: autosync-tries
04:47
Make room for extra argument in array. check-in: bae2e57901 user: andybradford tags: trunk
04:39
Make [/help?cmd=open|fossil open] and [/help?cmd=checkout|fossil checkout] aware of missing content too. check-in: 941ead2f9a user: andybradford tags: trunk
Changes
Unified Diff Ignore Whitespace Patch
Changes to src/db.c.
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
void cmd_open(void){
  int emptyFlag;
  int keepFlag;
  int forceMissingFlag;
  int allowNested;
  char **oldArgv;
  int oldArgc;
  static char *azNewArgv[] = { 0, "checkout", "--prompt", 0, 0, 0 };

  url_proxy_options();
  emptyFlag = find_option("empty",0,0)!=0;
  keepFlag = find_option("keep",0,0)!=0;
  forceMissingFlag = find_option("force-missing",0,0)!=0;
  allowNested = find_option("nested",0,0)!=0;
  if( g.argc!=3 && g.argc!=4 ){







|







1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
void cmd_open(void){
  int emptyFlag;
  int keepFlag;
  int forceMissingFlag;
  int allowNested;
  char **oldArgv;
  int oldArgc;
  static char *azNewArgv[] = { 0, "checkout", "--prompt", 0, 0, 0, 0 };

  url_proxy_options();
  emptyFlag = find_option("empty",0,0)!=0;
  keepFlag = find_option("keep",0,0)!=0;
  forceMissingFlag = find_option("force-missing",0,0)!=0;
  allowNested = find_option("nested",0,0)!=0;
  if( g.argc!=3 && g.argc!=4 ){