about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/librist/darwin.patch
blob: f9571fd434f7dea05af206d429b0106cc0f01bfc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--- a/tools/srp_shared.c
+++ b/tools/srp_shared.c
@@ -173,7 +173,11 @@ void user_verifier_lookup(char * username,
 	if (stat(srpfile, &buf) != 0)
 		return;
 
+#if defined(__APPLE__)
+	*generation = (buf.st_mtimespec.tv_sec << 32) | buf.st_mtimespec.tv_nsec;
+#else
 	*generation = (buf.st_mtim.tv_sec << 32) | buf.st_mtim.tv_nsec;
+#endif
 #endif
 
 	if (!lookup_data || !hashversion)