diff options
| author | Nancy Gilman <nlgilman@mit.edu> | 1994-01-13 01:51:38 +0000 |
|---|---|---|
| committer | Nancy Gilman <nlgilman@mit.edu> | 1994-01-13 01:51:38 +0000 |
| commit | 56e7980a67445d95e393dfe7188fc2c4674e506a (patch) | |
| tree | be8c09586a464a8d85663175d711f1b080adc17c /doc/api | |
| parent | 76c09d76d91ca81e8b6e313eedfd381c1ef211d5 (diff) | |
| download | krb5-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/api')
| -rw-r--r-- | doc/api/rcache.tex | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/api/rcache.tex b/doc/api/rcache.tex index 7292ed005..86b35a309 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. |
