Subject | Hash | Author | Date (UTC) |
---|---|---|---|
PHP FALSE verus NULL correction | 42f8bc560a0ec2203f0974e203e6c33ec26aa983 | Catalin(ux) M. BOIE | 2021-11-13 16:31:33 |
.spec: some minor corrections | 70c3a23f507d57c729e0d710ec99060e0e88c238 | Catalin(ux) M. BOIE | 2021-11-13 16:22:11 |
Rework locking for struct update | da8c09e15e485563d9573de3aff2a7ad999d2527 | Catalin(ux) M. BOIE | 2021-11-13 16:15:45 |
gpg: specify rsa 4096 instead of default because it does not work on f34 | eccdc02a82ce87f426eebc995988f907d914a3c7 | Catalin(ux) M. BOIE | 2021-11-13 16:15:15 |
Cosmetic | 0b0a9f2d1922d4d28052c6b1fbe737cc4302ce73 | Catalin(ux) M. BOIE | 2021-11-13 16:14:37 |
PHP8 corrections | 51f2cabc7298b5006bf8f0d215c1a338bee92cdb | Catalin(ux) M. BOIE | 2021-11-13 16:13:13 |
.spec: require openldap-servers to test LDAP | 84e469d5d9fe81509ff3421bdb6517786ea96628 | Catalin(ux) M. BOIE | 2021-11-06 20:09:07 |
Cosmetic | a4543d8257235dc5c93dd5eecdfb9caa3c2acafa | Catalin(ux) M. BOIE | 2021-11-02 07:04:36 |
Fixed partion create logic | c8897c0e6f31a0ab917d2320018c5920e0abd36b | Catalin(ux) M. BOIE | 2021-11-02 06:01:58 |
Typos corrected | c1a5002a1763327f4df8d5d0b419fcc2604f4698 | Catalin(ux) M. BOIE | 2021-10-30 11:08:34 |
compare: Updated number of lines | d1052eb4b72309dd216e3fd0da2dd311bbeb1383 | Catalin(ux) M. BOIE | 2021-10-30 10:56:39 |
Added docs for distro pkgs | 401c582772303eff8ba7fde3fcf09064d11bf828 | Catalin(ux) M. BOIE | 2021-10-30 10:47:43 |
Added a feature island for packages | 115412032fca7ad2166ffbc0a526b358ee1006c4 | Catalin(ux) M. BOIE | 2021-10-28 07:00:14 |
Fixed spec file | a4c1a8218cfc9cc5b822c587fa3fc709e5d2bf6b | Catalin(ux) M. BOIE | 2021-10-27 19:37:23 |
Get rid of xinetd | ebc765c9a21a9803b67484795625f7eb46642ae9 | Catalin(ux) M. BOIE | 2021-10-27 14:18:45 |
Added /etc/ssh/sshd_config.d in .spec file (again) | f225de7ddc3d78d4ec3699c63df6fd754500a9e3 | Catalin(ux) M. BOIE | 2021-10-26 07:05:26 |
Compare updated to add .rpm info | 0d0a890fe98689b7b70987824e98d34ca5204d45 | Catalin(ux) M. BOIE | 2021-10-26 06:32:39 |
Fix rg_str_replace regarding ints; .spec small changes | 7242f96f08983a70345e2665cfeb1ea592e3f3f7 | Catalin(ux) M. BOIE | 2021-10-26 06:17:39 |
builder: fixed immediate exit | 27d21c9ef6bb10beaf1d4c8da29a90d649e68b60 | Catalin(ux) M. BOIE | 2021-10-24 14:41:29 |
We need .spec file before configure | 840c7c3c0dd68c8ff6796b6494ca38afe8f4a5e6 | Catalin(ux) M. BOIE | 2021-10-24 14:28:59 |
File | Lines added | Lines deleted |
---|---|---|
inc/util.inc.php | 1 | 1 |
File inc/util.inc.php changed (mode: 100644) (index 8cb1f89..e14e0b4) | |||
... | ... | function rg_file_get_tail($f, $bytes) | |
2743 | 2743 | if ($size <= $bytes) | if ($size <= $bytes) |
2744 | 2744 | return @file_get_contents($f); | return @file_get_contents($f); |
2745 | 2745 | ||
2746 | $r = @file_get_contents($f, FALSE, FALSE, -1, $bytes); | ||
2746 | $r = @file_get_contents($f, FALSE, null, -$bytes, $bytes); | ||
2747 | 2747 | if ($r === FALSE) | if ($r === FALSE) |
2748 | 2748 | return ''; | return ''; |
2749 | 2749 |