summaryrefslogtreecommitdiffstats
path: root/content/posts/WIP-how-bsd-authentication-works/index.org
diff options
context:
space:
mode:
authorDante Catalfamo2020-10-30 02:39:49 -0400
committerDante Catalfamo2020-10-30 02:39:49 -0400
commit9b72ceac2ce6508f4fdbe42475f0f20f71836832 (patch)
tree82285a7e38ca2ea53ed42d96df08cd2ab7334296 /content/posts/WIP-how-bsd-authentication-works/index.org
parent363cc28c833ba2373fb4fddd17848d6abd616bad (diff)
downloadblog-9b72ceac2ce6508f4fdbe42475f0f20f71836832.tar.gz
blog-9b72ceac2ce6508f4fdbe42475f0f20f71836832.tar.bz2
blog-9b72ceac2ce6508f4fdbe42475f0f20f71836832.zip
Define MAXSPOOLSIZE
Diffstat (limited to 'content/posts/WIP-how-bsd-authentication-works/index.org')
-rw-r--r--content/posts/WIP-how-bsd-authentication-works/index.org4
1 files changed, 3 insertions, 1 deletions
diff --git a/content/posts/WIP-how-bsd-authentication-works/index.org b/content/posts/WIP-how-bsd-authentication-works/index.org
index a0c8407..ade8b1b 100644
--- a/content/posts/WIP-how-bsd-authentication-works/index.org
+++ b/content/posts/WIP-how-bsd-authentication-works/index.org
@@ -189,9 +189,11 @@
};
#+END_SRC
- Where =authdata=, =authopts=, and =rmfiles= are defined as
+ Where =MAXSPOOLSIZE=, =authdata=, =authopts=, and =rmfiles= are defined as
#+BEGIN_SRC c
+ #define MAXSPOOLSIZE (8*1024) /* Spool up to 8K of back info */
+
struct rmfiles {
struct rmfiles *next;
char *file;