From: Wilfried Göesgens Date: Mon, 23 Jan 2006 13:44:05 +0000 (+0000) Subject: upsie. some lines vanished. X-Git-Tag: v7.86~4282 X-Git-Url: https://code.citadel.org/?a=commitdiff_plain;h=8c451428eca6cfe21a76c388984c2d6cae7d33bb;p=citadel.git upsie. some lines vanished. removed kerningham-richie cisms. --- diff --git a/webcit/ChangeLog b/webcit/ChangeLog index b8d51be61..ff2b02f9d 100644 --- a/webcit/ChangeLog +++ b/webcit/ChangeLog @@ -1,5 +1,8 @@ $Id$ +Fri Jan 20 21:03:25 CET 2006 dothebart +* finished doxygen style comments. + Sun Jan 22 17:49:29 EST 2006 ajc * More work on the wiki view. Don't try to use it yet. diff --git a/webcit/messages.c b/webcit/messages.c index 98837f177..23a1e2ef6 100644 --- a/webcit/messages.c +++ b/webcit/messages.c @@ -130,8 +130,7 @@ void utf8ify_rfc822_string(char *buf) { * target window in order to keep the BBS session in its own window. * \param buf the message buffer */ -void url(buf) -char buf[]; +void url(char *buf) { int pos; diff --git a/webcit/tools.c b/webcit/tools.c index ba9921107..86e2d4f5c 100644 --- a/webcit/tools.c +++ b/webcit/tools.c @@ -180,9 +180,7 @@ long extract_long(const char *source, int parmnum) * \param ch the char to search * \return the position inside of st */ -int haschar(st, ch) -char st[]; -char ch; +int haschar(char *st,char ch) { int a, b; b = 0; diff --git a/webcit/webcit.h b/webcit/webcit.h index b844ef949..df8e2be11 100644 --- a/webcit/webcit.h +++ b/webcit/webcit.h @@ -371,6 +371,7 @@ struct wcsession { int num_cal; /**< ??? todo */ #endif struct wc_attachment *first_attachment; /**< ??? todo */ + char last_chat_user[256]; /**< ??? todo */ char ImportantMessage[SIZ]; /**< ??? todo */ int ctdl_pid; /**< Session ID on the Citadel server */ char httpauth_user[256]; /**< only for GroupDAV sessions */ diff --git a/webcit/webserver.c b/webcit/webserver.c index 9d7829c3d..bebc06417 100644 --- a/webcit/webserver.c +++ b/webcit/webserver.c @@ -9,6 +9,7 @@ */ /*@{*/ +#include "webcit.h" #include "webserver.h" #ifndef HAVE_SNPRINTF