Missing parameter to a printf() function. No idea where it went, but I
authorMichael Hampton <io_error@uncensored.citadel.org>
Wed, 25 Feb 2004 01:35:34 +0000 (01:35 +0000)
committerMichael Hampton <io_error@uncensored.citadel.org>
Wed, 25 Feb 2004 01:35:34 +0000 (01:35 +0000)
put it back.

citadel/ChangeLog
citadel/citadel.c

index d695de43cacafb0a0bd706eae04371870e1ff6f1..49859b5d31bc676fc64d5dfd4c9b5eb8d01933b7 100644 (file)
@@ -1,4 +1,8 @@
  $Log$
+ Revision 614.50  2004/02/25 01:35:34  error
+ Missing parameter to a printf() function.  No idea where it went, but I
+ put it back.
+
  Revision 614.49  2004/02/24 05:09:06  ajc
  * Better validation of incoming network messages.
 
@@ -5398,3 +5402,4 @@ Sat Jul 11 00:20:48 EDT 1998 Nathan Bryant <bryant@cs.usm.maine.edu>
 
 Fri Jul 10 1998 Art Cancro <ajc@uncensored.citadel.org>
        * Initial CVS import
+
index 471a19c2892beeff51306edd9b0ebc7391a31b99..4caa66956199039e583fb2f907d9d2d00b007859 100644 (file)
@@ -1258,7 +1258,8 @@ int main(int argc, char **argv)
 
 NEWUSR:        if (strlen(rc_password) == 0) {
                scr_printf("'%s' not found.\n"
-                       "Do you want to create a new account with this name? ");
+                       "Do you want to create a new account with this name? ",
+                       fullname);
                if (yesno() == 0)
                        goto GSTA;
        }