summaryrefslogtreecommitdiffstats
path: root/content
diff options
context:
space:
mode:
authorDante Catalfamo2020-10-29 13:37:27 -0400
committerDante Catalfamo2020-10-29 13:37:27 -0400
commita66168af496a02c102ddbaf87cf02f3e81b5ab48 (patch)
treecd15f6d3e52a4181c9f8fae94ba99bf50058869d /content
parentdabe67c5b31b63a6037bbe6d0482f800e55012c4 (diff)
downloadblog-a66168af496a02c102ddbaf87cf02f3e81b5ab48.tar.gz
blog-a66168af496a02c102ddbaf87cf02f3e81b5ab48.tar.bz2
blog-a66168af496a02c102ddbaf87cf02f3e81b5ab48.zip
bsd-auth: small wording changes
Diffstat (limited to 'content')
-rw-r--r--content/posts/WIP-how-bsd-authentication-works/index.org10
1 files changed, 5 insertions, 5 deletions
diff --git a/content/posts/WIP-how-bsd-authentication-works/index.org b/content/posts/WIP-how-bsd-authentication-works/index.org
index 310be9c..35316d7 100644
--- a/content/posts/WIP-how-bsd-authentication-works/index.org
+++ b/content/posts/WIP-how-bsd-authentication-works/index.org
@@ -110,10 +110,10 @@
* auth_userokay
- The highest level function, and easiest to use is =auth_userokay=. It
- takes four character arrays as arguments, =name=, =style=, =type=, and
- =password=. It returns either a =0= for failure, of a non-zero value
- for success.
+ =auth_userokay= is the highest level function, and easiest to use.
+ It takes four character arrays as arguments, =name=, =style=,
+ =type=, and =password=. It returns either a =0= for failure, of a
+ non-zero value for success.
This function lives inside =/lib/libc/gen/authenticate.c=
@@ -246,7 +246,7 @@
void auth_setstate(auth_session_t *as, int s)
#+end_src
- =auth_setstate= sets the state of =*as= to =s=
+ =auth_setstate= sets the =state= of =*as= to =s=.
* auth_open
#+begin_src c