summaryrefslogtreecommitdiff
path: root/Userland/Libraries
diff options
context:
space:
mode:
authorGunnar Beutner <gunnar@beutner.name>2021-04-25 07:22:35 +0200
committerAndreas Kling <kling@serenityos.org>2021-04-25 09:28:21 +0200
commitf89c60664c001e72128b0142d972f31cb13590d3 (patch)
tree61e6caada2b20bd64f85dd494626442526cb7205 /Userland/Libraries
parent898e9492f79a7ad3bd6e53f3891eea214f929837 (diff)
downloadserenity-f89c60664c001e72128b0142d972f31cb13590d3.zip
Ports: Fix building openssh
This fixes a spelling mistake in the timespeccmp() macro and enables debug symbols for OpenSSH to make diagnosing problems easier.
Diffstat (limited to 'Userland/Libraries')
-rw-r--r--Userland/Libraries/LibC/sys/time.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/sys/time.h b/Userland/Libraries/LibC/sys/time.h
index 9cce41c57d..6d187e7ca4 100644
--- a/Userland/Libraries/LibC/sys/time.h
+++ b/Userland/Libraries/LibC/sys/time.h
@@ -111,6 +111,6 @@ static inline void TIMESPEC_TO_TIMEVAL(struct timeval* tv, const struct timespec
#define timespecclear timespecclear
#define timespecisset timespecisset
#define timespeccmp(ts, us, cmp) \
- (((ts)->tv_sec == (us)->tv_sec) ? ((ts)->vf_nsec cmp(us)->tv_nsec) : ((ts)->tv_sec cmp(us)->tv_sec))
+ (((ts)->tv_sec == (us)->tv_sec) ? ((ts)->tv_nsec cmp(us)->tv_nsec) : ((ts)->tv_sec cmp(us)->tv_sec))
__END_DECLS