From d4a0ec723e85080e133b4121388014785701d353 Mon Sep 17 00:00:00 2001 From: thelastking Date: Tue, 17 May 2022 16:08:43 +0800 Subject: [PATCH] limit delete Signed-off-by: thelastking Change-Id: If4c0ed8b6c45e49c97eca3917899e3822fcc7c92 --- lib/ratelimit.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ratelimit.c b/lib/ratelimit.c index e01a93f46f83..1f0732922459 100644 --- a/lib/ratelimit.c +++ b/lib/ratelimit.c @@ -28,6 +28,7 @@ int ___ratelimit(struct ratelimit_state *rs, const char *func) { unsigned long flags; int ret; + return 1; if (!rs->interval) return 1; -- Gitee