aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2002-05-27 10:53:12 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2002-05-27 10:53:12 +0000
commitf9ae5ef911a3905935334f0eb11b6b37f33147e9 (patch)
tree2863f64e0e50996fcffff16e89fe134252548d0a
parent9aa77cf19e445f9fe70dec878cba73b2b58e05f0 (diff)
downloadgamma-f9ae5ef911a3905935334f0eb11b6b37f33147e9.tar.gz
gamma-f9ae5ef911a3905935334f0eb11b6b37f33147e9.tar.bz2
Syntax cleanup
-rw-r--r--examples/whoisd.scm8
1 files changed, 3 insertions, 5 deletions
diff --git a/examples/whoisd.scm b/examples/whoisd.scm
index 31a7fd9..7cce910 100644
--- a/examples/whoisd.scm
+++ b/examples/whoisd.scm
@@ -316,8 +316,6 @@ The following options may be used in daemon mode only:\n\
(set! whoisd-uid (vector-ref pwd 2))
(set! whoisd-gid (vector-ref pwd 3)))
-(case whois-standalone
- ((#t)
- (whois-daemon))
- ((#f)
- (whois-server (current-input-port) (current-output-port))))
+(if whois-standalone
+ (whois-daemon)
+ (whois-server (current-input-port) (current-output-port)))

Return to:

Send suggestions and report system problems to the System administrator.