NetSNMP 0.3.0.2 → 0.3.0.3
raw patch · 2 files changed
+3/−3 lines, 2 filesdep ~basePVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: base
API changes (from Hackage documentation)
- Network.Protocol.NetSNMP: type OIDpart = CULong
+ Network.Protocol.NetSNMP: type OIDpart = CUInt
Files
- NetSNMP.cabal +2/−2
- src/Network/Protocol/NetSNMP.hsc +1/−1
NetSNMP.cabal view
@@ -1,6 +1,6 @@ Name: NetSNMP-Version: 0.3.0.2+Version: 0.3.0.3 Synopsis: Bindings for net-snmp's C API for clients Description: Network.Protocol.NetSNMP is a partial binding to the library portion of the net-snmp package. It uses the@@ -22,7 +22,7 @@ library hs-source-dirs: src- build-depends: base >=4 && <5+ build-depends: base >=4.5 && <5 ,bytestring >= 0.10 && < 0.11 build-tools: hsc2hs exposed-modules: Network.Protocol.NetSNMP
src/Network/Protocol/NetSNMP.hsc view
@@ -70,7 +70,7 @@ #ifdef EIGHTBIT_SUBIDS type OIDpart = CUChar -- C typedef oid #else-type OIDpart = CULong+type OIDpart = CUInt #endif type RawOID = [OIDpart]