From: Michael Hampton Date: Wed, 25 Feb 2004 01:35:34 +0000 (+0000) Subject: Missing parameter to a printf() function. No idea where it went, but I X-Git-Tag: v7.86~5581 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=1457900e4a713d73a79963e5eac1c6655882cd75;p=citadel.git Missing parameter to a printf() function. No idea where it went, but I put it back. --- diff --git a/citadel/ChangeLog b/citadel/ChangeLog index d695de43c..49859b5d3 100644 --- a/citadel/ChangeLog +++ b/citadel/ChangeLog @@ -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 Fri Jul 10 1998 Art Cancro * Initial CVS import + diff --git a/citadel/citadel.c b/citadel/citadel.c index 471a19c28..4caa66956 100644 --- a/citadel/citadel.c +++ b/citadel/citadel.c @@ -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; }