blob: 50df00f170db1f3464f7a4528147c3d3e1fff2ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$NetBSD: patch-ab,v 1.3 2006/10/22 09:24:38 rillig Exp $
--- konversation/scripts/sysinfo.orig 2006-08-31 19:51:24.000000000 +0200
+++ konversation/scripts/sysinfo 2006-10-22 11:21:23.000000000 +0200
@@ -69,10 +69,10 @@ printf ("%d.%d%s up",n, n2, u);
out="Sysinfo for '$HN': $OSKERN running $KDE, $CPU, $HDD, $MEM, $PROC proc's, ${UPT}"
-if [ "x$PORT" == "x" ] ; then
+if [ "x$PORT" = "x" ] ; then
echo "$out"
else
- if [ "x$TARGET" == "x" ] ; then
+ if [ "x$TARGET" = "x" ] ; then
dcop $PORT default error "$out"
else
dcop $PORT default say $SERVER "$TARGET" "$out"
|