summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nserver/src/protocol.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/nserver/src/protocol.c b/nserver/src/protocol.c
index 67ca03c..0357623 100644
--- a/nserver/src/protocol.c
+++ b/nserver/src/protocol.c
@@ -10,7 +10,7 @@ int sscreate(char *key)
Record *rec = (Record *) TSTree_search(tst, key, strlen(key));
// If it's already there; there's nothing to do.
- if (rec != NULL && rec-> deleted == 0) {
+ if (rec != NULL && rec->deleted == 0) {
return 1;
}
// If it's already there and deleted, undelete it.