Displaying 3 results from an estimated 3 matches for "tmpdb".
Did you mean:
tmpd
2016 Apr 04
2
[PATCH 1/2] Use 'error' function consistently throughout.
...f (asprintf (&tmpd, "%s/virtdiffXXXXXX", tmpdir) < 0)
+ error (EXIT_FAILURE, errno, "asprintf");
+ if (mkdtemp (tmpd) == NULL)
+ error (EXIT_FAILURE, errno, "mkdtemp");
if (asprintf (&tmpda, "%s/a", tmpd) < 0 ||
- asprintf (&tmpdb, "%s/b", tmpd) < 0) {
- perror ("asprintf");
- exit (EXIT_FAILURE);
- }
+ asprintf (&tmpdb, "%s/b", tmpd) < 0)
+ error (EXIT_FAILURE, errno, "asprintf");
if (guestfs_download (g1, file1->path, tmpda) == -1)
goto out;
@@ -...
2014 Sep 22
2
[PATCH] New APIs: Implement stat calls that return nanosecond timestamps (RHBZ#1144891).
..._STAT (st_ctime_sec);
#undef COMPARE_STAT
if (guestfs_compare_xattr_list (file1->xattrs, file2->xattrs))
output_string ("xattrs");
@@ -701,8 +702,8 @@ diff (struct file *file1, guestfs_h *g1, struct file *file2, guestfs_h *g2)
CLEANUP_FREE char *tmpd, *tmpda = NULL, *tmpdb = NULL, *cmd = NULL;
int r;
- assert (is_reg (file1->stat->mode));
- assert (is_reg (file2->stat->mode));
+ assert (is_reg (file1->stat->st_mode));
+ assert (is_reg (file2->stat->st_mode));
if (asprintf (&tmpd, "%s/virtdiffXXXXXX", tmpdir) < 0)...
2017 Sep 26
5
[PATCH 0/5] Miscellaneous refactoring of common/utils, create common/mltools
Miscellaneous refactoring, but the main one is to rename mllib/
as common/mltools/
Rich.