SecBSD's official ports repository
This commit is contained in:
commit
2c0afcbbf3
64331 changed files with 5339189 additions and 0 deletions
15
net/wireshark/patches/patch-rawshark_c
Normal file
15
net/wireshark/patches/patch-rawshark_c
Normal 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;
|
Loading…
Add table
Add a link
Reference in a new issue