Skip to content

Commit

Permalink
Merge pull request #15 from paravoid/spelling
Browse files Browse the repository at this point in the history
Fix three simple spelling issues
  • Loading branch information
Fabian Mauchle authored and GitHub committed Jul 9, 2018
2 parents 4bcfc7c + c11ae9f commit d123f2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dtls.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ unsigned char *raddtlsget(SSL *ssl, int timeout, pthread_mutex_t *lock) {

len = RADLEN(buf);
if (len < 20) {
debug(DBG_ERR, "raddtlsget: length too small, malformed packet! closing conneciton!");
debug(DBG_ERR, "raddtlsget: length too small, malformed packet! closing connection!");
return NULL;
}
rad = malloc(len);
Expand Down Expand Up @@ -421,7 +421,7 @@ void *dtlslistener(void *arg) {
if ((flags = fcntl(s,F_GETFL)) == -1)
debugx(1, DBG_ERR, "dtlslistener: failed to get socket flags");
if (fcntl(s, F_SETFL, flags | O_NONBLOCK) == -1)
debugx(1, DBG_ERR, "dtlslistener: faild set set non-blocking");
debugx(1, DBG_ERR, "dtlslistener: failed to set non-blocking");

for (;;) {
fds[0].fd = s;
Expand Down
2 changes: 1 addition & 1 deletion radsecproxy.conf.5.xml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ blocktype name {
needs FTicksKey to be set.
</para>
<para>
Before chosing any of <literal>Original</literal>,
Before choosing any of <literal>Original</literal>,
<literal>FullyHashed</literal> or
<literal>VendorHashed</literal>, consider the implications
for user privacy when MAC addresses are collected. How
Expand Down

0 comments on commit d123f2b

Please sign in to comment.