summaryrefslogtreecommitdiff
path: root/Propellor/Types
diff options
context:
space:
mode:
authorJoey Hess2014-04-18 22:57:51 -0400
committerJoey Hess2014-04-18 22:57:51 -0400
commitb338c0a3bba52849ff163803a8c748bfbc9e7c00 (patch)
tree22c795814df347cbc00b0f3bc2305e797dcc3186 /Propellor/Types
parent293aa8aad5e31330ba71dfdf1e256d7356db6745 (diff)
rename TTL field, per RFC 2308
Diffstat (limited to 'Propellor/Types')
-rw-r--r--Propellor/Types/Dns.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Propellor/Types/Dns.hs b/Propellor/Types/Dns.hs
index 0474ea96..3bdd6c3a 100644
--- a/Propellor/Types/Dns.hs
+++ b/Propellor/Types/Dns.hs
@@ -42,7 +42,7 @@ data SOA = SOA
, sRefresh :: Integer
, sRetry :: Integer
, sExpire :: Integer
- , sTTL :: Integer
+ , sNegativeCacheTTL :: Integer
, sRecord :: [Record]
-- ^ Records for the root of the domain. Typically NS, A, TXT
}