summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorVladimir Still <xstill@mail.muni.cz>2014-09-02 10:06:04 +0200
committerVladimir Still <xstill@mail.muni.cz>2014-09-02 10:06:04 +0200
commit13bbce96c3fefa68cb81f36e171512bf5c84fc31 (patch)
tree9f9f46264c7d23a926563c8344c4beeb3c5a9a08 /nixos
parenta2394f09c7003efc238eb065afdd57221f6ba257 (diff)
downloadnixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.tar
nixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.tar.gz
nixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.tar.bz2
nixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.tar.lz
nixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.tar.xz
nixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.tar.zst
nixlib-13bbce96c3fefa68cb81f36e171512bf5c84fc31.zip
sshd: Fix typo in assetion.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/ssh/sshd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index 956c31a8ba36..379dec2e92c1 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -420,7 +420,7 @@ in
       })
       ++ flip map cfg.listenAddresses ({ addr, port }: {
         assertion = addr != null;
-        message = "addr must be spefied in each listenAddresses entry";
+        message = "addr must be specified in each listenAddresses entry";
       });
 
   };