X-Git-Url: https://code.citadel.org/?p=citadel.git;a=blobdiff_plain;f=webcit%2Fwebcit.c;h=6d789dc4879b990725c30b5df3882f15eb085733;hp=d988ea8b9987b802d6136a58cc7434581af5eaf7;hb=f7b538d716fc80c12ab49d3ca8c4eb48a5c51eb2;hpb=ad1d0d3525add6a139e41308b2931ae70b0c9b57 diff --git a/webcit/webcit.c b/webcit/webcit.c index d988ea8b9..6d789dc48 100644 --- a/webcit/webcit.c +++ b/webcit/webcit.c @@ -347,13 +347,16 @@ void authorization_required(void) wc_printf("

"); wc_printf(_("Authorization Required")); wc_printf("

\r\n"); - - if (WCC->ImportantMsg != NULL) + if (WCC->ImportantMsg != NULL) { message = ChrPtr(WCC->ImportantMsg); + } - wc_printf(_("The resource you requested requires a valid username and password. " - "You could not be logged in: %s\n"), message); + wc_printf( + _("The resource you requested requires a valid username and password. " + "You could not be logged in: %s\n"), + message + ); wDumpContent(0); end_webcit_session(); }