summaryrefslogtreecommitdiff
path: root/appl
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2007-06-08 10:51:11 +0000
committerCharles.Forsyth <devnull@localhost>2007-06-08 10:51:11 +0000
commit1f44c82a26ff60e012a2ff697cb036a25c0c7f97 (patch)
tree73cb74c31ef90c5ee906bbdf9040f8e9d8ebbb20 /appl
parent7d5a2526f46cd3474fb96a684f7b87e9e78128b0 (diff)
20070608-1149
Diffstat (limited to 'appl')
-rw-r--r--appl/cmd/9export.b1
-rw-r--r--appl/cmd/install/logs.b2
2 files changed, 1 insertions, 2 deletions
diff --git a/appl/cmd/9export.b b/appl/cmd/9export.b
index 5df1c8cf..1c430d88 100644
--- a/appl/cmd/9export.b
+++ b/appl/cmd/9export.b
@@ -38,7 +38,6 @@ init(nil: ref Draw->Context, args: list of string)
arg->init(args);
arg->setusage("9export [-aA9] [-k keyspec] [-e enc digest]");
- flags := 0;
cryptalg := ""; # will be rc4_256 sha1
keyspec := "";
noauth := 0;
diff --git a/appl/cmd/install/logs.b b/appl/cmd/install/logs.b
index 20135622..35f43760 100644
--- a/appl/cmd/install/logs.b
+++ b/appl/cmd/install/logs.b
@@ -122,7 +122,7 @@ contents(e: ref Entry): string
s := "";
for(cl := e.contents; cl != nil; cl = tl cl)
s += " " + hd cl;
- return s[1:];
+ return s; # includes initial space
}
Entry.text(e: self ref Entry): string