MEDIUM: fd: don't unset fdtab[].updated upon delete

We must not remove the .updated flag otherwise we risk having to
reallocate a new updt entry if the same fd is reused.
diff --git a/src/fd.c b/src/fd.c
index d84ce0a..9a73d35 100644
--- a/src/fd.c
+++ b/src/fd.c
@@ -42,7 +42,7 @@
 	fdinfo[fd].port_range = NULL;
 	close(fd);
 	fdtab[fd].owner = NULL;
-	fdtab[fd].updated = fdtab[fd].new = 0;
+	fdtab[fd].new = 0;
 
 	while ((maxfd-1 >= 0) && !fdtab[maxfd-1].owner)
 		maxfd--;