summaryrefslogtreecommitdiff
path: root/server/zstring.c
diff options
context:
space:
mode:
authorGravatar Lucien Van Elsen <lwvanels@mit.edu>1992-01-17 03:00:51 +0000
committerGravatar Lucien Van Elsen <lwvanels@mit.edu>1992-01-17 03:00:51 +0000
commitfafb32d50dcae9fb121735e7ae3c6cee1de8bec4 (patch)
tree6951bf55d45a193be46c3d22f973d77de4623edf /server/zstring.c
parent6a9132baf3f5383d17f004c136a711df0fb966eb (diff)
Don't store len in zstring; v. infreq. used.
Diffstat (limited to 'server/zstring.c')
-rw-r--r--server/zstring.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/server/zstring.c b/server/zstring.c
index f9377da..6b5aed3 100644
--- a/server/zstring.c
+++ b/server/zstring.c
@@ -78,7 +78,6 @@ make_zstring(s, downcase)
new_s = strsave(s);
new_z = (ZSTRING *) malloc(sizeof(ZSTRING));
new_z->string = new_s;
- new_z->len = strlen(new_s);
new_z->ref_count = 1;
/* Add to beginning of hash table */