X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Froomops.c;h=982c7139e23a1022738680c8a2e84c6cc3e7f3c5;hb=fcb8c4169baa629eb3c1a4979c7c8c32f1560389;hp=076e5636b8154c03870d8f55117c040bd0f25555;hpb=79deb44467aad2192fa07a7491d1c19daf89a255;p=citadel.git diff --git a/webcit/roomops.c b/webcit/roomops.c index 076e5636b..982c7139e 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -41,7 +41,7 @@ ConstStr QR2FlagList[] = { {HKEY("")} }; -void DBG_QR(long QR) +void _DBG_QR(long QR) { int i = 1; int j=0; @@ -64,7 +64,7 @@ void DBG_QR(long QR) -void DBG_QR2(long QR2) +void _DBG_QR2(long QR2) { int i = 1; int j=0; @@ -117,8 +117,8 @@ void smart_goto(const StrBuf *next_room) { readloop(readnew, eUseDefault); } -/** - * \brief goto a private room +/* + * goto a private room */ void goto_private(void) { @@ -568,8 +568,9 @@ void LoadXRoomInfoText(void) StrBuf *Buf; int Done = 0; - if (WCC->CurRoom.XHaveInfoTextLoaded) + if (WCC->CurRoom.XHaveInfoTextLoaded) { return; + } WCC->CurRoom.XHaveInfoTextLoaded = 1; Buf = NewStrBuf(); @@ -589,7 +590,7 @@ void LoadXRoomInfoText(void) } } - FreeStrBuf (&Buf); + FreeStrBuf(&Buf); } @@ -943,8 +944,8 @@ void entroom(void) -/** - * \brief Change the view for this room +/* + * Change the view for this room */ void change_view(void) { int newview; @@ -977,7 +978,7 @@ void set_room_policy(void) { strcpy(WC->ImportantMessage, &buf[4]); if (WC->axlevel >= 6) { - strcat(WC->ImportantMessage, "
\n"); + strcat(WC->ImportantMessage, "
\n"); serv_printf("SPEX floorpolicy|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); serv_getln(buf, sizeof buf); strcat(WC->ImportantMessage, &buf[4]);