By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 437
Collapse All | Expand All

(-)hk_sqlite3classes/sqlite/shell.c.str (-2 / +2 lines)
Lines 358-364 Link Here
358
    output_c_string(p->out, z);
358
    output_c_string(p->out, z);
359
  }
359
  }
360
  if( bSep ){
360
  if( bSep ){
361
    fprintf(p->out, p->separator);
361
    fprintf(p->out, "%s", p->separator);
362
  }
362
  }
363
}
363
}
364
364
Lines 1013-1019 Link Here
1013
  }else
1013
  }else
1014
1014
1015
  if( c=='h' && strncmp(azArg[0], "help", n)==0 ){
1015
  if( c=='h' && strncmp(azArg[0], "help", n)==0 ){
1016
    fprintf(stderr,zHelp);
1016
    fprintf(stderr,"%s",zHelp);
1017
  }else
1017
  }else
1018
1018
1019
  if( c=='i' && strncmp(azArg[0], "import", n)==0 && nArg>=3 ){
1019
  if( c=='i' && strncmp(azArg[0], "import", n)==0 && nArg>=3 ){
(-)hk_sqliteclasses/sqlite/shell.c.str (-1 / +1 lines)
Lines 692-698 Link Here
692
  }else
692
  }else
693
693
694
  if( c=='h' && strncmp(azArg[0], "help", n)==0 ){
694
  if( c=='h' && strncmp(azArg[0], "help", n)==0 ){
695
    fprintf(stderr,zHelp);
695
    fprintf(stderr,"%s",zHelp);
696
  }else
696
  }else
697
697
698
  if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg>1 ){
698
  if( c=='i' && strncmp(azArg[0], "indices", n)==0 && nArg>1 ){

Return to bug 437