URI: 
       fix noob syntax error - reed-alert - Lightweight agentless alerting system for server
  HTML git clone git://bitreich.org/reed-alert/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/reed-alert/
   DIR Log
   DIR Files
   DIR Refs
   DIR Tags
   DIR README
   DIR LICENSE
       ---
   DIR commit 17024e3560369b58c274e68fdd6128ad12fccd49
   DIR parent f5fc8cf8692c366dd8f166ee50cf383a4abe477e
  HTML Author: Solene Rapenne <solene@perso.pw>
       Date:   Fri, 25 Jan 2019 11:12:23 +0100
       
       fix noob syntax error
       
       Diffstat:
         M probes.lisp                         |       6 +++---
       
       1 file changed, 3 insertions(+), 3 deletions(-)
       ---
   DIR diff --git a/probes.lisp b/probes.lisp
       @@ -105,11 +105,11 @@
        (create-probe
         ping
         (command-return-code
       -   #openbsd
       +   #+openbsd
           (list "ping" "-w1" "-c2" (getf params :host))
       -   #freebsd
       +   #+freebsd
           (list "ping" "-W1" "-c2" (getf params :host))
       -   #linux
       +   #+linux
           (list "ping" "-W1" "-c2" (getf params :host))))
        
        (create-probe