diff options
author | Jakub Hrozek <jhrozek@redhat.com> | 2010-07-29 16:34:00 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2010-09-08 09:36:21 -0400 |
commit | 3b08dec5ee634f83ee18e1753d5ffe0ac5e3c458 (patch) | |
tree | 8f173e8097ea31d23aaa9f5d95b7e950a201d421 /src/db | |
parent | ea347b1e07843f7dfc2a0880e2283ee3e63caf4b (diff) | |
download | sssd-3b08dec5ee634f83ee18e1753d5ffe0ac5e3c458.tar.gz sssd-3b08dec5ee634f83ee18e1753d5ffe0ac5e3c458.tar.xz sssd-3b08dec5ee634f83ee18e1753d5ffe0ac5e3c458.zip |
Move crypto functions into its own subdir
A refactoring patch that creates a common util/crypto subdir with
per-implementation subdirectories for each underlying crypto library
supported by SSSD.
Diffstat (limited to 'src/db')
-rw-r--r-- | src/db/sysdb_ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/db/sysdb_ops.c b/src/db/sysdb_ops.c index d86c35d6c..017f8ebce 100644 --- a/src/db/sysdb_ops.c +++ b/src/db/sysdb_ops.c @@ -21,7 +21,7 @@ #include "util/util.h" #include "db/sysdb_private.h" -#include "util/sha512crypt.h" +#include "util/crypto/sss_crypto.h" #include <time.h> static int add_string(struct ldb_message *msg, int flags, |