* Renamed "struct user" to "struct ctdluser"
[citadel.git] / citadel / serv_listsub.c
index 5c3fc258107716d8785ecc2e895d738f263a2361..33b9b36453c187d25086d6ecdeacc38aca97d731 100644 (file)
@@ -81,7 +81,7 @@ void listsub_generate_token(char *buf) {
  * Enter a subscription request
  */
 void do_subscribe(char *room, char *email, char *subtype, char *webpage) {
-       struct room qrbuf;
+       struct ctdlroom qrbuf;
        FILE *ncfp;
        char filename[SIZ];
        char token[SIZ];
@@ -193,7 +193,7 @@ void do_subscribe(char *room, char *email, char *subtype, char *webpage) {
  * Enter an unsubscription request
  */
 void do_unsubscribe(char *room, char *email, char *webpage) {
-       struct room qrbuf;
+       struct ctdlroom qrbuf;
        FILE *ncfp;
        char filename[SIZ];
        char token[SIZ];
@@ -307,7 +307,7 @@ void do_unsubscribe(char *room, char *email, char *webpage) {
  * Confirm a subscribe/unsubscribe request.
  */
 void do_confirm(char *room, char *token) {
-       struct room qrbuf;
+       struct ctdlroom qrbuf;
        FILE *ncfp;
        char filename[SIZ];
        char line_token[SIZ];