diff options
author | Thierry Vignaud <tv@mageia.org> | 2013-04-23 16:45:08 +0000 |
---|---|---|
committer | Thierry Vignaud <tv@mageia.org> | 2013-04-23 16:45:08 +0000 |
commit | c4aa4bb7a3bab3da5f1257a969972e9b44a963a0 (patch) | |
tree | 1a61605700998494194239ce0109be00c67ec2e5 /USER | |
parent | 7b69d455f72e03dcee86aa078ec7d1215d2e2a88 (diff) | |
download | userdrake-c4aa4bb7a3bab3da5f1257a969972e9b44a963a0.tar userdrake-c4aa4bb7a3bab3da5f1257a969972e9b44a963a0.tar.gz userdrake-c4aa4bb7a3bab3da5f1257a969972e9b44a963a0.tar.bz2 userdrake-c4aa4bb7a3bab3da5f1257a969972e9b44a963a0.tar.xz userdrake-c4aa4bb7a3bab3da5f1257a969972e9b44a963a0.zip |
(lu_homedir_populate) rename as my_homedir_populate
thus fixing compiling with latest libuser
Diffstat (limited to 'USER')
-rw-r--r-- | USER/USER.xs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/USER/USER.xs b/USER/USER.xs index ef6f1fb..15759e0 100644 --- a/USER/USER.xs +++ b/USER/USER.xs @@ -67,7 +67,7 @@ static SV ** convert_value_array_list(register SV **sp, GValueArray *array) { * directory, setting all ownerships as given, and setting the mode of * the top-level directory as given. */ int -lu_homedir_populate(const char *skeleton, const char *directory, +my_homedir_populate(const char *skeleton, const char *directory, uid_t owner, gid_t group, mode_t mode, USER__ERR **error) { @@ -120,7 +120,7 @@ lu_homedir_populate(const char *skeleton, const char *directory, timebuf.modtime = st.st_mtime; /* If it's a directory, descend into it. */ if (S_ISDIR(st.st_mode)) { - if (!lu_homedir_populate(skelpath, + if (!my_homedir_populate(skelpath, path, owner, st.st_gid ?: group, @@ -264,7 +264,7 @@ lu_homedir_move(const char *oldhome, const char *newhome, /* If the directory exists... */ if (stat(oldhome, &st) != -1) { /* ... and we can copy it ... */ - if (lu_homedir_populate(oldhome, newhome, + if (my_homedir_populate(oldhome, newhome, st.st_uid, st.st_gid, st.st_mode, error)) { /* ... remove the old one. */ @@ -520,7 +520,7 @@ Admin_UserAdd(self, ent, is_system, dont_create_home) value = g_value_array_get_nth(values, 0); homeDirectory = g_value_get_string(value); - if (lu_homedir_populate(skeleton, homeDirectory, + if (my_homedir_populate(skeleton, homeDirectory, uidNumber, gidNumber, 0700, &error) == 0) { warn(_("Error creating `%s': %s"), homeDirectory, error ? error->string : "unknown error"); |