search for: bd02f4b

Displaying 3 results from an estimated 3 matches for "bd02f4b".

2014 Jan 14
0
[PATCH] builder, edit, fish: use copy-attributes
...stfs_setxattr (g, "security.selinux", selinux_context, - (int) selinux_context_size, dest) == -1) - return -1; - } - - return 0; -} - -static int is_windows (guestfs_h *g, const char *root) { int w; diff --git a/fish/edit.c b/fish/edit.c index 754a34a..bd02f4b 100644 --- a/fish/edit.c +++ b/fish/edit.c @@ -32,7 +32,6 @@ #include "fish.h" static char *generate_random_name (const char *filename); -static int copy_attributes (const char *src, const char *dest); /* guestfish edit command, suggested by Ján Ondrej, implemented by RWMJ */ @@...
2014 Jan 07
8
RFC: copy-attributes command
Hi, attached there is a prototype of patch for adding a new copy-attributes command. Such command would allow copy the attributes of a "file" to another, so for example in guestfish: copy-attributes foo bar permissions:true xattributes:false would only copy the permissions of foo to bar, not copying its extended attributes too. Just few notes: - my first daemon command, so
2014 Aug 28
14
[PATCH 00/13] code refactorings for tools
Hi, this series does a couple of code reorganizations/refactoring in code used by tools: the windows path handling code, and the two types of file editing (using editor, and using perl expression). There's still a code duplication between the two variants of file editing, but it is just within a single source, and can be easily solved now (planning as next step). Pino Toscano (13): edit: