From: Eelco Dolstra Date: Fri, 21 Sep 2012 16:55:51 +0000 (-0400) Subject: missing: Fix compilation error due to wrong __NR_name_to_handle_at definition X-Git-Tag: v191~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=848af05524553aa8171de26323707ee06a9bd9d8 missing: Fix compilation error due to wrong __NR_name_to_handle_at definition "__NR_name_to_handle" should read "__NR_name_to_handle_at". This fixes a compilation error on systems with older kernel headers. --- diff --git a/src/shared/missing.h b/src/shared/missing.h index c5bb71a50..14abe4ee2 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -209,12 +209,12 @@ static inline pid_t gettid(void) { #endif #ifdef __x86_64__ -# ifndef __NR_name_to_handle -# define __NR_name_to_handle 303 +# ifndef __NR_name_to_handle_at +# define __NR_name_to_handle_at 303 # endif #else -# ifndef __NR_name_to_handle -# define __NR_name_to_handle 341 +# ifndef __NR_name_to_handle_at +# define __NR_name_to_handle_at 341 # endif #endif