Diff
Not logged in

Differences From:

File src/main.c part of check-in [22c1ac41d4] - Add separate "clone" permissions. Previously, one needed "History" premission in order to clone. But sometimes we want to grant clone without granting history. by drh on 2007-08-23 19:52:19. [view]

To:

File src/main.c part of check-in [0cd202a86e] - Website updates. Change the message for unrecognized commands to refer the user to "help". by drh on 2007-08-23 23:10:56. Also file src/main.c part of check-in [424d47e453] - Attempting the same merge that aku tried and got empty files with. by drh on 2007-08-25 18:58:16. [view]

@@ -197,14 +197,14 @@
   }
   rc = name_search(zCmdName, aCommand, count(aCommand), &idx);
   if( rc==1 ){
     fprintf(stderr,"%s: unknown command: %s\n"
-                   "%s: use \"commands\" or \"test-commands\" for help\n",
+                   "%s: use \"help\" for more information\n",
                    argv[0], zCmdName, argv[0]);
     return 1;
   }else if( rc==2 ){
     fprintf(stderr,"%s: ambiguous command prefix: %s\n"
-                   "%s: use \"commands\" or \"test-commands\" for help\n",
+                   "%s: use \"help\" for more information\n",
                    argv[0], zCmdName, argv[0]);
     return 1;
   }
   aCommand[idx].xFunc();