Check-in [df3d6cbff5]
Not logged in
Overview

SHA1 Hash:df3d6cbff5949a10e10957ad2ca016f0e8cafb2f
Date: 2007-09-24 20:21:52
User: mjanssen
Comment:Corrected "fossil user password" error message. It had an extra user
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/user.c from [2a5d91addf] to [bd013e3f3c].

@@ -213,11 +213,11 @@
     db_finalize(&q);
   }else if( n>=2 && strncmp(g.argv[2],"password",2)==0 ){
     char *zPrompt;
     int uid;
     Blob pw;
-    if( g.argc!=4 ) usage("user password USERNAME");
+    if( g.argc!=4 ) usage("password USERNAME");
     uid = db_int(0, "SELECT uid FROM user WHERE login=%Q", g.argv[3]);
     if( uid==0 ){
       fossil_fatal("no such user: %s", g.argv[3]);
     }
     zPrompt = mprintf("new passwd for %s: ", g.argv[3]);

Modified todo.txt from [6d5d9db2ed] to [18c6921332].

@@ -23,10 +23,11 @@
  *  Bug: pull is ending prematurely.
 
  *  Bug: Make sure merge and other commands (check-out) do not try
     to use a phantom.
 
+ *  Bug: When clone use incorrect http URL, local repo file is still created.
 
 Things to work on:
 
  *  Use the wiki_convert() routine to render comments and other text
     on web pages.