summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorNancy Gilman <nlgilman@mit.edu>1994-01-13 01:51:38 +0000
committerNancy Gilman <nlgilman@mit.edu>1994-01-13 01:51:38 +0000
commit56e7980a67445d95e393dfe7188fc2c4674e506a (patch)
treebe8c09586a464a8d85663175d711f1b080adc17c /doc
parent76c09d76d91ca81e8b6e313eedfd381c1ef211d5 (diff)
downloadkrb5-56e7980a67445d95e393dfe7188fc2c4674e506a.tar.gz
krb5-56e7980a67445d95e393dfe7188fc2c4674e506a.tar.xz
krb5-56e7980a67445d95e393dfe7188fc2c4674e506a.zip
nlg- updated based on function prototypes
arguments should now be correct git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3303 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'doc')
-rw-r--r--doc/api/rcache.tex14
-rw-r--r--doc/implement/rcache-i.tex14
2 files changed, 18 insertions, 10 deletions
diff --git a/doc/api/rcache.tex b/doc/api/rcache.tex
index 7292ed005b..86b35a3094 100644
--- a/doc/api/rcache.tex
+++ b/doc/api/rcache.tex
@@ -52,7 +52,7 @@ Errors: permission errors
\begin{funcdecl}{krb5_rc_store}{krb5_error_code}{\funcin}
\funcarg{krb5_rcache}{id}
-\funcarg{krb5_dont_replay *}{rep}
+\funcarg{krb5_donot_replay *}{rep}
\end{funcdecl}
Stores \funcparam{rep} in the replay cache \funcparam{id}.
Requires that \funcparam{id} identifies a valid replay cache.
@@ -145,7 +145,11 @@ Returns the type of the default replay cache.
\begin{funcdecl}{krb5_rc_default}{krb5_error_code}{\funcinout}
\funcarg{krb5_rcache *}{id}
\end{funcdecl}
-Equivalent to \funcnamenoparens{krb5_rc_resolve_full}(\funcparam{id},
-\funcnamenoparens{strcat}(\funcnamenoparens{strcat}(\funcname{krb5_rc_default_type},``:''),
-\funcname{krb5_rc_default_name})) (except of course you can't do the
-strcat's with the return values\ldots).
+
+Equivalent to:
+\begin{verbatim}
+krb5_rc_resolve_full(id,
+ strcat(strcat(krb5_rc_default_type(),``:''),
+ krb5_rc_default_name)) ;
+\end{verbatim}
+Except of course you can't do the strcat's with the return values.
diff --git a/doc/implement/rcache-i.tex b/doc/implement/rcache-i.tex
index 7292ed005b..86b35a3094 100644
--- a/doc/implement/rcache-i.tex
+++ b/doc/implement/rcache-i.tex
@@ -52,7 +52,7 @@ Errors: permission errors
\begin{funcdecl}{krb5_rc_store}{krb5_error_code}{\funcin}
\funcarg{krb5_rcache}{id}
-\funcarg{krb5_dont_replay *}{rep}
+\funcarg{krb5_donot_replay *}{rep}
\end{funcdecl}
Stores \funcparam{rep} in the replay cache \funcparam{id}.
Requires that \funcparam{id} identifies a valid replay cache.
@@ -145,7 +145,11 @@ Returns the type of the default replay cache.
\begin{funcdecl}{krb5_rc_default}{krb5_error_code}{\funcinout}
\funcarg{krb5_rcache *}{id}
\end{funcdecl}
-Equivalent to \funcnamenoparens{krb5_rc_resolve_full}(\funcparam{id},
-\funcnamenoparens{strcat}(\funcnamenoparens{strcat}(\funcname{krb5_rc_default_type},``:''),
-\funcname{krb5_rc_default_name})) (except of course you can't do the
-strcat's with the return values\ldots).
+
+Equivalent to:
+\begin{verbatim}
+krb5_rc_resolve_full(id,
+ strcat(strcat(krb5_rc_default_type(),``:''),
+ krb5_rc_default_name)) ;
+\end{verbatim}
+Except of course you can't do the strcat's with the return values.