Displaying 20 results from an estimated 800 matches similar to: "Fwd: libguestfs patch"
2018 Aug 22
0
Re: [PATCH] generator: Do not claim copyright for future years
Doesn't it mean you have to remember changing copyright in 2019?
--
Mykola Ivanets
ср, 22 серп. 2018, 08:58 користувач Bernhard M. Wiedemann <
bwiedemann@suse.de> пише:
> This change helps to make libguestfs package build reproducible.
> See https://reproducible-builds.org/ for why this is good.
>
> Without this patch, building today's libguestfs in 2033, claims
>
2018 Aug 22
4
[PATCH] generator: Do not claim copyright for future years
This change helps to make libguestfs package build reproducible.
See https://reproducible-builds.org/ for why this is good.
Without this patch, building today's libguestfs in 2033, claims
Copyright (C) 2009-2033 Red Hat Inc.
which cannot be correct.
This affected files like
/usr/include/guestfs-gobject.h
/usr/lib/perl5/vendor_perl/5.26.2/x86_64-linux-thread-multi/Sys/Guestfs.pm
2015 May 28
4
[PATCH 1/4] generator: move api_version to a common version_added
This way the version string of each API can be used also in other
generator modules.
Mostly code motion, no actual behaviour changes.
---
generator/c.ml | 21 ++++++++++-----------
generator/docstrings.ml | 6 ++++++
2 files changed, 16 insertions(+), 11 deletions(-)
diff --git a/generator/c.ml b/generator/c.ml
index 63dc09a..a2b9c94 100644
--- a/generator/c.ml
+++ b/generator/c.ml
@@
2019 Jul 29
1
Re: [PATCH] Rust bindings: Add Rust bindings
From: Hiroyuki_Katsura <hiroyuki.katsura.0513@gmail.com>
This patch includes Actions and their tests. Missing:
- Events
- Examples
Rust bindings: Add create / close functions
Rust bindings: Add 4 bindings tests
Rust bindings: Add generator of structs
Rust bindings: Add generator of structs for optional arguments
Rust bindings: Add generator of function signatures
Rust bindings:
2016 Feb 23
0
[PATCH 1/4] generator: Add interfaces to all modules.
Be explicit about what is exported from each module in the generator.
---
generator/Makefile.am | 26 +++++++++++++++++++++++++-
generator/bindtests.mli | 30 ++++++++++++++++++++++++++++++
generator/c.mli | 41 +++++++++++++++++++++++++++++++++++++++++
generator/checks.mli | 18 ++++++++++++++++++
generator/csharp.mli | 19 +++++++++++++++++++
generator/customize.mli
2018 Aug 22
0
Re: [PATCH] generator: Do not claim copyright for future years
Thanks for explanation.
--
Mykola Ivanets
ср, 22 серп. 2018, 22:23 користувач Bernhard M. Wiedemann <
bwiedemann@suse.de> пише:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> On 2018-08-22 06:11, Nikolay Ivanets wrote:
> > Doesn't it mean you have to remember changing copyright in 2019?
>
> s/have to/can/
>
>
>
2009 Jul 21
1
Problem with INTERNALDATE when the year in localtime and GMT different
In my thought utc_offset function in src/lib/utc-offset.c returns wrong
offset value when the year in localtime and GMT different.
/* max offset of 24 hours */
if (ltm.tm_yday < gtm.tm_yday)
offset = -24 * 60;
else if (ltm.tm_yday > gtm.tm_yday)
offset = 24 * 60;
else
offset = 0;
I think this code should be modified as followings.
/* max offset of 24 hours */
if ((ltm.tm_year ==
2016 Feb 23
7
[PATCH 0/4] Various tweaks to the generator.
Use interfaces files (*.mli files) instead of exporting all symbols
randomly.
Change the 'file is generated' warnings at the top of generated files
so they accurately describe which source file generates each output
file.
Rich.
2012 Feb 20
10
[PATCH] hvm: Correct RTC time offset update error due to tm->tm_year
Hi
In rtc_set_time, mktime is called to calculate seconds since 1970/01/01,
input parameters of mktime are required to be in normal date format.
Such as: year=1980, mon=12, day=31, hour=23, min=59, sec=59. However,
the current input parameter of mktime is tm->tm_year, and it is the
number of years since 1900. (For example, if current time is 2012/12/31,
and tm->tm_year is 112). This is
2017 Mar 21
0
[PATCH] p2v: Calculate offset of the Real Time Clock from UTC.
Calculate the offset of the physical host's Real Time Clock (RTC) from
UTC and pass this to virt-v2v through the libvirt XML description of
the physical machine.
The libvirt XML is modified to add one of the following:
(no <clock/> element)
- if the RTC could not be read or there was some other time
calculation error.
<clock offset='utc' />
- if the RTC is the
2016 Mar 23
2
Centos in the Browser string ?
I know Centos is a 100% rebuilt of whatever Red Hat has produced, even
though the version numbers are no longer visually identical and, as
Johnny always writes, "If it ain't in the Red Hat version, it ain't in
Centos" or words having the same meaning.
Having got circa 20,000 hits, from all round the world, to a single dull
web page in 2 days, I thought I would analyse the
2017 Jul 25
0
[Announce] Samba 4.7.0rc3 Available for Download
Release Announcements
=====================
This is the third release candidate of Samba 4.7. This is *not*
intended for production environments and is designed for testing
purposes only. Please report any defects via the Samba bug reporting
system at https://bugzilla.samba.org/.
Samba 4.7 will be the next version of the Samba suite.
UPGRADING
=========
smbclient changes
-----------------
2015 Aug 31
0
[PATCH v5 2/2] fish: add journal-view command (RHBZ#988100)
Lets user view journald log from VM in a similar format as journalctl
uses.
Fixes RFE: journal reader in guestfish
---
cat/log.c | 4 +++
fish/journal.c | 3 +-
generator/Makefile.am | 6 ++--
generator/actions.ml | 22 ++++++++++++
generator/journal.ml | 97 +++++++++++++++++++++++++++++++++++++++++++++++++++
generator/main.ml | 3 ++
6 files changed, 131
2019 Oct 03
2
[PATCH] Avoiding Dereferencing of NULL pointer
Signed-off-by: krishnaiah bommu <krishnaiah.bommu at intel.com>
---
moduli.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/moduli.c b/moduli.c
index 578fc48..c1fa484 100644
--- a/moduli.c
+++ b/moduli.c
@@ -153,12 +153,14 @@ static int
qfileout(FILE * ofile, u_int32_t otype, u_int32_t otests, u_int32_t otries,
u_int32_t osize, u_int32_t ogenerator, BIGNUM *
2009 Feb 27
0
POSIXlt, POSIXct, strptime, GMT and 1969-12-31 23:59:59
R-devel:
Some very inconsistent behavior, that I can't seem to find documented.
Sys.setenv(TZ="GMT")
str(unclass(strptime("1969-12-31 23:59:59","%Y-%m-%d %H:%M:%S")))
List of 9
$ sec : num 59
$ min : int 59
$ hour : int 23
$ mday : int 31
$ mon : int 11
$ year : int 69
$ wday : int 3
$ yday : int 364
$ isdst: int 0
- attr(*, "tzone")= chr
2016 Mar 24
0
Centos in the Browser string ?
On 03/23/16 18:42, Always Learning wrote:
<>
> My C5 Firefox string is "Mozilla/5.0 (X11; Linux x86_64; rv:38.0)
> Gecko/20100101 Firefox/38.0".
>
> Ubunto has "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:45.0)
> Gecko/20100101 Firefox/45.0"
>
> My questions are:-
>
> (1) Why can't we have 'Centos' in the Firefox browser string ?
2015 Aug 27
0
[PATCH v4 2/2] fish: add journal-view command
Lets user view journald log from VM in a similar format as journalctl
uses.
Fixes RFE: journal reader in guestfish (RHBZ#988100)
---
fish/fish.h | 3 +++
generator/Makefile.am | 6 ++++--
generator/actions.ml | 22 ++++++++++++++++++++++
generator/main.ml | 3 +++
4 files changed, 32 insertions(+), 2 deletions(-)
diff --git a/fish/fish.h b/fish/fish.h
index df22e34..8ae6454
2017 Aug 15
0
[Announce] Samba 4.7.0rc4 Available for Download
Release Announcements
=====================
This is the fourth release candidate of Samba 4.7. This is *not*
intended for production environments and is designed for testing
purposes only. Please report any defects via the Samba bug reporting
system at https://bugzilla.samba.org/.
Samba 4.7 will be the next version of the Samba suite.
UPGRADING
=========
smbclient changes
-----------------
2017 Aug 15
0
[Announce] Samba 4.7.0rc4 Available for Download
Release Announcements
=====================
This is the fourth release candidate of Samba 4.7. This is *not*
intended for production environments and is designed for testing
purposes only. Please report any defects via the Samba bug reporting
system at https://bugzilla.samba.org/.
Samba 4.7 will be the next version of the Samba suite.
UPGRADING
=========
smbclient changes
-----------------
2004 Apr 10
0
patches for copying atimes
Hi.
Here's a patch for copying the atimes of files when -t/--times is
given. I bumped the protocol to 29 since it sends more data over the
wire. It obviously does not send the atime if it's sending data to an
older rsync version.
It passes all the tests (including the added atime.test) for me on a:
Linux Debian/3.0 gcc 2.95.4 (debian), glibc 2.2.5 system.
Any questions/feedback? I