diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-08-10 15:33:36 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2017-08-10 15:44:09 +0200 |
commit | cf18d69d1e8b238c82940b4ea8173436bd53a1ce (patch) | |
tree | 072770c8575c0f5d8248ff5a4a3afa4388fe455c /src/ipcpd/normal/dht.c | |
parent | f3d2ce1e668dfcf6b5088bf448b29f96d0ddaa76 (diff) | |
download | ouroboros-cf18d69d1e8b238c82940b4ea8173436bd53a1ce.tar.gz ouroboros-cf18d69d1e8b238c82940b4ea8173436bd53a1ce.zip |
lib, ipcpd, tools: Fix enum assignments
This fixes several assignments to the wrong enum type.
Diffstat (limited to 'src/ipcpd/normal/dht.c')
-rw-r--r-- | src/ipcpd/normal/dht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ipcpd/normal/dht.c b/src/ipcpd/normal/dht.c index 954ca670..5c294c00 100644 --- a/src/ipcpd/normal/dht.c +++ b/src/ipcpd/normal/dht.c @@ -630,7 +630,7 @@ static void lookup_destroy(struct lookup * lu) case LU_DONE: case LU_UPDATE: case LU_COMPLETE: - lu->state = REQ_NULL; + lu->state = LU_NULL; break; case LU_NULL: default: |