SecBSD's official ports repository

This commit is contained in:
purplerain 2023-08-16 22:26:55 +00:00
commit 2c0afcbbf3
Signed by: purplerain
GPG key ID: F42C07F07E2E35B7
64331 changed files with 5339189 additions and 0 deletions

View file

@ -0,0 +1,15 @@
Index: rawshark.c
--- rawshark.c.orig
+++ rawshark.c
@@ -570,7 +570,11 @@ main(int argc, char *argv[])
limit.rlim_cur = get_positive_int(ws_optarg, "memory limit");
limit.rlim_max = get_positive_int(ws_optarg, "memory limit");
+#ifdef RLIMIT_AS
if(setrlimit(RLIMIT_AS, &limit) != 0) {
+#else
+ if(setrlimit(RLIMIT_DATA, &limit) != 0) {
+#endif
cmdarg_err("setrlimit() returned error");
ret = INVALID_OPTION;
goto clean_exit;