mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-04 07:09:41 +00:00
13 lines
412 B
Diff
13 lines
412 B
Diff
--- sqlite-autoconf-3350300/shell.c 2021-03-26 15:24:58.000000000 +0100
|
|
+++ sqlite-autoconf-port/shell.c 2021-03-27 12:05:40.289547647 +0100
|
|
@@ -2554,6 +2554,10 @@
|
|
if( utimensat(AT_FDCWD, zFile, times, AT_SYMLINK_NOFOLLOW) ){
|
|
return 1;
|
|
}
|
|
+#elif defined(HAVE_UTIME)
|
|
+ int rc = utime(zFile, NULL);
|
|
+ if (rc < 0)
|
|
+ return 1;
|
|
#else
|
|
/* Legacy unix */
|
|
struct timeval times[2];
|