diff options
author | Dante Catalfamo | 2020-10-30 02:39:49 -0400 |
---|---|---|
committer | Dante Catalfamo | 2020-10-30 02:39:49 -0400 |
commit | 9b72ceac2ce6508f4fdbe42475f0f20f71836832 (patch) | |
tree | 82285a7e38ca2ea53ed42d96df08cd2ab7334296 /content/posts/WIP-how-bsd-authentication-works | |
parent | 363cc28c833ba2373fb4fddd17848d6abd616bad (diff) | |
download | blog-9b72ceac2ce6508f4fdbe42475f0f20f71836832.tar.gz blog-9b72ceac2ce6508f4fdbe42475f0f20f71836832.tar.bz2 blog-9b72ceac2ce6508f4fdbe42475f0f20f71836832.zip |
Define MAXSPOOLSIZE
Diffstat (limited to 'content/posts/WIP-how-bsd-authentication-works')
-rw-r--r-- | content/posts/WIP-how-bsd-authentication-works/index.org | 4 |
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; |