Skip Menu |
 

From: ghudson@mit.edu
Subject: git commit

Don't flush libkrb5 context profiles

The profile library has two deconstructors, profile_release() and
profile_abandon(). profile_release() flushes in-memory changes to
backing files, while profile_abandon() does not. If a krb5_context
profile contains in-memory changes, they were copied from a profile
supplied to krb5_init_context_profile(), and the caller can decide
whether to flush them.

As profile_copy() is now a public function, remove the include of
prof_int.h and the associated LOCALINCLUDES setting in Makefile.in.

https://github.com/krb5/krb5/commit/0a3acc20564e82ba33741248cf25ca4d085d777f
Author: Greg Hudson <ghudson@mit.edu>
Commit: 0a3acc20564e82ba33741248cf25ca4d085d777f
Branch: master
.gitignore | 1 +
src/lib/krb5/os/Makefile.in | 16 ++++++---
src/lib/krb5/os/deps | 14 ++++++--
src/lib/krb5/os/init_os_ctx.c | 5 ++-
src/lib/krb5/os/t_ctxprf.c | 79 +++++++++++++++++++++++++++++++++++++++++++
src/lib/krb5/os/t_ctxprf.py | 15 ++++++++
6 files changed, 120 insertions(+), 10 deletions(-)
From: ghudson@mit.edu
Subject: git commit

Fix t_ctxprf.c to return 0 from main

Add a missing return at the end of main to the end of the test program
added in commit 0a3acc20564e82ba33741248cf25ca4d085d777f.

https://github.com/krb5/krb5/commit/d3e8ebc69e6b7044de1a8ef5835f62db86a07102
Author: Greg Hudson <ghudson@mit.edu>
Commit: d3e8ebc69e6b7044de1a8ef5835f62db86a07102
Branch: master
src/lib/krb5/os/t_ctxprf.c | 1 +
1 file changed, 1 insertion(+)