From: Christian Hofstaedtler Date: Sun, 20 Oct 2013 22:58:48 +0000 (+0200) Subject: Remove comment about unsigned mismatch from oraclebackend X-Git-Tag: rec-3.6.0-rc1~391^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7dc02cd973c92c4db845845f40778e118588431;p=pdns Remove comment about unsigned mismatch from oraclebackend Now that the docs are correct, we no longer need the comment ;-) --- diff --git a/modules/oraclebackend/oraclebackend.hh b/modules/oraclebackend/oraclebackend.hh index 06ee6e747..064fc85c4 100644 --- a/modules/oraclebackend/oraclebackend.hh +++ b/modules/oraclebackend/oraclebackend.hh @@ -65,8 +65,8 @@ public: void alsoNotifies(const string &domain, set *addrs); void getUnfreshSlaveInfos(vector* domains); void getUpdatedMasters(vector* domains); - void setFresh(uint32_t zoneId); // No, it's not int zoneId. Really. - void setNotified(uint32_t zoneId, uint32_t serial); // ditto + void setFresh(uint32_t zoneId); + void setNotified(uint32_t zoneId, uint32_t serial); bool list(const string &domain, int zoneId); bool startTransaction(const string &domain, int zoneId); bool feedRecord(const DNSResourceRecord &rr);