From a8563c836ee5d33ec1f64ea8c45c8712eac40010 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Tue, 29 Jul 2008 18:21:28 +0000 Subject: [PATCH] * fallback to /knrooms after login if the user doesn't have a setting. --- webcit/auth.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/webcit/auth.c b/webcit/auth.c index 8912b92a9..d347e7841 100644 --- a/webcit/auth.c +++ b/webcit/auth.c @@ -539,6 +539,8 @@ void do_welcome(void) if (ChrPtr(Buf)[0] == '/') { StrBufCutLeft(Buf, 1); } + if (StrLength(Buf) == 0) + StrBufAppendBufPlain(Buf, "/knrooms", 1, 0); http_redirect(ChrPtr(Buf)); } -- 2.39.2