TDAP: align rss config structs with the primary type.
authorWilfried Goesgens <dothebart@citadel.org>
Tue, 14 May 2013 23:29:48 +0000 (01:29 +0200)
committerWilfried Goesgens <dothebart@citadel.org>
Tue, 14 May 2013 23:29:48 +0000 (01:29 +0200)
citadel/modules/rssclient/rss_atom_parser.h
citadel/modules/rssclient/serv_rssclient.c

index 07df846f434e4ae7dc43541daa0c51b4097c49f2..acddbe9199c09ba93397db612284d057d7eb20d2 100644 (file)
@@ -81,9 +81,9 @@ typedef struct __networker_save_message {
 
 typedef struct RSSCfgLine RSSCfgLine;
 struct RSSCfgLine {
+       RSSCfgLine *next;
        StrBuf *Url;
        time_t last_known_good;
-       RSSCfgLine *Next;
 };
 
 typedef struct __pRSSConfig {
index b2a069fd6a2ecabe0ccc172e84a9dcc86d0145f8..b4e59452f35d74b4e926cbfb2c18956e9f53dfd2 100644 (file)
@@ -464,7 +464,7 @@ void UpdateLastKnownGood(pRSSConfig *pCfg, time_t now)
                        if (RSSCfg == pCfg->pCfg)
                                break;
 
-                       RSSCfg = RSSCfg->Next;
+                       RSSCfg = RSSCfg->next;
                }
                if (RSSCfg != NULL)
                {
@@ -695,7 +695,7 @@ void rssclient_scan_room(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg *OneR
 
                        pthread_mutex_unlock(&RSSQueueMutex);
 
-                       RSSCfg = RSSCfg->Next;
+                       RSSCfg = RSSCfg->next;
                        continue;
                }
                pthread_mutex_unlock(&RSSQueueMutex);
@@ -722,7 +722,7 @@ void rssclient_scan_room(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg *OneR
                    DeleteRssCfg);
 
                pthread_mutex_unlock(&RSSQueueMutex);
-               RSSCfg = RSSCfg->Next;
+               RSSCfg = RSSCfg->next;
        }
 }
 
@@ -830,7 +830,7 @@ void rssclient_veto_scan_room(struct ctdlroom *qrbuf, void *data, OneRoomNetCfg
                        StrBufAppendBuf(Info->ErrMsg, RSSCfg->Url, 0);
                        StrBufAppendBufPlain(Info->ErrMsg, HKEY(">\n"), 0);
                }
-               RSSCfg = RSSCfg->Next;
+               RSSCfg = RSSCfg->next;
        }
 }
 
@@ -862,7 +862,7 @@ void ParseRSSClientCfgLine(const CfgLineType *ThisOne, StrBuf *Line, const char
        RSSCfg->last_known_good = StrBufExtractNext_long(Line, &LinePos, '|');
 
 
-       RSSCfg->Next = (RSSCfgLine *)OneRNCFG->NetConfigs[ThisOne->C];
+       RSSCfg->next = (RSSCfgLine *)OneRNCFG->NetConfigs[ThisOne->C];
        OneRNCFG->NetConfigs[ThisOne->C] = (RoomNetCfgLine*) RSSCfg;
 }