Skip to content

Commit

Permalink
Fixup some documentation references
Browse files Browse the repository at this point in the history
  • Loading branch information
arr2036 committed Aug 15, 2019
1 parent 7959c32 commit 4ff307c
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ mailing lists first to determine whether it really is a defect or
missing feature.

Instructions for gathering data for defect reports can be found in
`doc/source/bugs.md` or on the [wiki](https://wiki.freeradius.org/project/bug-reports).
`doc/developers/bugs.adoc` or on the [wiki](https://wiki.freeradius.org/project/bug-reports).

Under no circumstances should the issue tracker be used for support
requests, those questions belong on the user's mailing list. If you
Expand Down
4 changes: 2 additions & 2 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -8108,7 +8108,7 @@ fi
if test "x$ac_cv_lib_talloc__talloc" != "xyes"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: talloc library not found. Use --with-talloc-lib-dir=<path>." >&5
$as_echo "$as_me: WARNING: talloc library not found. Use --with-talloc-lib-dir=<path>." >&2;}
as_fn_error $? "FreeRADIUS requires libtalloc. Please read doc/source/dependencies.rst for further instructions." "$LINENO" 5
as_fn_error $? "FreeRADIUS requires libtalloc. Please read doc/developers/dependencies.adoc for further instructions." "$LINENO" 5
fi
TALLOC_LIBS="${smart_lib}"
Expand Down Expand Up @@ -8301,7 +8301,7 @@ fi
if test "x$ac_cv_lib_kqueue_kqueue" != "xyes"; then
{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: kqueue library not found. Use --with-kqueue-lib-dir=<path>." >&5
$as_echo "$as_me: WARNING: kqueue library not found. Use --with-kqueue-lib-dir=<path>." >&2;}
as_fn_error $? "FreeRADIUS requires libkqueue (or system kqueue). Please read doc/source/dependencies.rst for further instructions." "$LINENO" 5
as_fn_error $? "FreeRADIUS requires libkqueue (or system kqueue). Please read doc/developers/dependencies.adoc for further instructions." "$LINENO" 5
fi
fi
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -900,7 +900,7 @@ smart_try_dir="$talloc_lib_dir"
FR_SMART_CHECK_LIB(talloc, _talloc)
if test "x$ac_cv_lib_talloc__talloc" != "xyes"; then
AC_MSG_WARN([talloc library not found. Use --with-talloc-lib-dir=<path>.])
AC_MSG_ERROR([FreeRADIUS requires libtalloc. Please read doc/source/dependencies.rst for further instructions.])
AC_MSG_ERROR([FreeRADIUS requires libtalloc. Please read doc/developers/dependencies.adoc for further instructions.])
fi

TALLOC_LIBS="${smart_lib}"
Expand All @@ -918,7 +918,7 @@ if test "x$ac_cv_func_kqueue" != "xyes"; then
FR_SMART_CHECK_LIB(kqueue, kqueue)
if test "x$ac_cv_lib_kqueue_kqueue" != "xyes"; then
AC_MSG_WARN([kqueue library not found. Use --with-kqueue-lib-dir=<path>.])
AC_MSG_ERROR([FreeRADIUS requires libkqueue (or system kqueue). Please read doc/source/dependencies.rst for further instructions.])
AC_MSG_ERROR([FreeRADIUS requires libkqueue (or system kqueue). Please read doc/developers/dependencies.adoc for further instructions.])
fi
fi

Expand Down
4 changes: 2 additions & 2 deletions raddb/mods-available/detail
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ detail {
# rotation'.
#
# If your detail files are large, you may also want to
# add a `:%H` (see `doc/configuration/variables.rst`) to
# add a `:%H` (see `doc/unlang/xlat_character.adoc`) to
# the end of it, to create a new detail file every hour.
#
# e.g.:
Expand Down Expand Up @@ -88,7 +88,7 @@ detail {
# By default, we use the ctime format (see `man 3 ctime` for details).
#
# The header can be customised by editing this string.
# See `doc/configuration/variables.rst` for a description
# See `doc/unlang/xlat.adoc` for a description
# of what can be put here.
#
header = "%t"
Expand Down
2 changes: 1 addition & 1 deletion raddb/mods-available/exec
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
#
# The RADIUS attributes from the user request will be placed
# into environment variables of the executed program, as
# described in `man unlang` and in `doc/configuration/variables.rst`
# described in `man unlang` and in `doc/unlang/xlat.adoc`
#
# The return value of the program run determines the result of the exec
# instance call as follows:
Expand Down
2 changes: 1 addition & 1 deletion raddb/mods-available/mschap
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ mschap {
# ntlm_auth_domain:: The domain name for ntlm_auth password change.
#
# This module support `MS-CHAPv2` (not v1) password
# change requests. See `doc/modules/mschap.rst` for
# change requests. See `doc/howto/modules/mschap.adoc` for
# some IMPORTANT information.
#
# Samba/ntlm_auth - if you are using `ntlm_auth` to validate
Expand Down
4 changes: 2 additions & 2 deletions src/lib/server/xlat_eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -1462,7 +1462,7 @@ static size_t xlat_process(TALLOC_CTX *ctx, char **out, REQUEST *request, xlat_e

/** Replace %whatever in a string.
*
* See 'doc/configuration/variables.rst' for more information.
* See 'doc/unlang/xlat.adoc' for more information.
*
* @param[in] ctx to allocate expansion buffers in.
* @param[out] out Where to write pointer to output buffer.
Expand Down Expand Up @@ -1512,7 +1512,7 @@ static ssize_t _xlat_eval(TALLOC_CTX *ctx, char **out, size_t outlen, REQUEST *r

/** Replace %whatever in a string.
*
* See 'doc/configuration/variables.rst' for more information.
* See 'doc/unlang/xlat.adoc' for more information.
*
* @param[in] ctx to allocate expansion buffers in.
* @param[out] out Where to write pointer to output buffer.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/unlang/unlang_priv.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ extern "C" {
/** Types of unlang_t nodes
*
* Here are our basic types: unlang_t, unlang_group_t, and unlang_module_t. For an
* explanation of what they are all about, see doc/configurable_failover.rst
* explanation of what they are all about, see doc/unlang/configurable_failover.adoc
*/
typedef enum {
UNLANG_TYPE_NULL = 0, //!< unlang type not set.
Expand Down
2 changes: 1 addition & 1 deletion suse/freeradius.spec
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ rm -rf $RPM_BUILD_ROOT
%defattr(-,root,root)
# doc
%doc suse/README.SuSE
%doc doc/* LICENSE COPYRIGHT CREDITS README.rst
%doc doc/* LICENSE COPYRIGHT CREDITS README.md
# SuSE
%{_sysconfdir}/init.d/freeradius
%config %{_sysconfdir}/pam.d/radiusd
Expand Down

0 comments on commit 4ff307c

Please sign in to comment.