Added sssd-devel + sudo

This commit is contained in:
Xavier Beaudouin
2024-01-24 16:04:46 +01:00
parent c1aebe21f9
commit 6157c579c4
74 changed files with 3286 additions and 0 deletions

View File

@ -0,0 +1,19 @@
--- src/util/util.c.orig 2023-05-05 08:11:07 UTC
+++ src/util/util.c
@@ -763,6 +763,16 @@ errno_t sss_fd_nonblocking(int fd)
return EOK;
}
+int flb_timezone(void)
+{
+ struct tm tm;
+ time_t t = 0;
+ tzset();
+ localtime_r(&t, &tm);
+ return -(tm.tm_gmtoff);
+}
+#define timezone (flb_timezone())
+
/* Convert GeneralizedTime (http://en.wikipedia.org/wiki/GeneralizedTime)
* to unix time (seconds since epoch). Use UTC time zone.
*/