]> git.pond.sub.org Git - empserver/blobdiff - src/lib/update/removewants.c
Remove the demand update feature veto. It's virtually unused, flawed
[empserver] / src / lib / update / removewants.c
index eecd4dcb3602e7a72cef618532b231dd849f2203..88cb89a60e77e2a3dc4f1ce707b0d61c5a30bb70 100644 (file)
@@ -41,10 +41,7 @@ update_removewants(void)
     natid cn;
     struct natstr *natp;
 
-    for (cn = 0; NULL != (natp = getnatp(cn)); cn++) {
-       if (natp->nat_stat != STAT_UNUSED && !natp->nat_update)
-           natp->nat_missed++;
+    for (cn = 0; NULL != (natp = getnatp(cn)); cn++)
        natp->nat_update = 0;
-    }
     return 0;
 }