diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,4 +1,4 @@
-git-annex (10.20220623) upstream; urgency=medium
+git-annex (10.20220624) upstream; urgency=medium
 
   * init: Added --no-autoenable option.
   * info: Added --autoenable option.
diff --git a/Utility/IPAddress.hs b/Utility/IPAddress.hs
--- a/Utility/IPAddress.hs
+++ b/Utility/IPAddress.hs
@@ -30,7 +30,7 @@
 extractIPAddress :: SockAddr -> Maybe String
 extractIPAddress (SockAddrInet _ ipv4) =
 	let (a,b,c,d) = hostAddressToTuple ipv4
-	in Just $ tintercalate "." [conv a, conv b, conv c, conv d]
+	in Just $ intercalate "." [conv a, conv b, conv c, conv d]
   where
 	conv a
 		| show x == show b12 = conv a
diff --git a/git-annex.cabal b/git-annex.cabal
--- a/git-annex.cabal
+++ b/git-annex.cabal
@@ -1,5 +1,5 @@
 Name: git-annex
-Version: 10.20220623
+Version: 10.20220624
 Cabal-Version: >= 1.10
 License: AGPL-3
 Maintainer: Joey Hess <id@joeyh.name>
