summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2017-09-21 20:54:16 +0200
committerLennart Poettering <lennart@poettering.net>2017-09-21 20:54:16 +0200
commita4041e4f68bc667e8b6eb8439f13e826b6cc4d50 (patch)
tree390d1fb9be2f55e68dd59d718dc5620187b82245
parentexecute: fix typo in error message (#6881) (diff)
downloadsystemd-a4041e4f68bc667e8b6eb8439f13e826b6cc4d50.tar.xz
systemd-a4041e4f68bc667e8b6eb8439f13e826b6cc4d50.zip
Link to the right glibc commit in comment (#6884)
Reported by Marcos Mello. Fixes #6882.
-rw-r--r--src/basic/process-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/process-util.c b/src/basic/process-util.c
index 9d0154117b..b77d83c99f 100644
--- a/src/basic/process-util.c
+++ b/src/basic/process-util.c
@@ -1023,7 +1023,7 @@ pid_t getpid_cached(void) {
* objects were used across fork()s. With this caching the old behaviour is somewhat restored.
*
* https://bugzilla.redhat.com/show_bug.cgi?id=1443976
- * https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1d2bc2eae969543b89850e35e532f3144122d80a
+ * https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c579f48edba88380635ab98cb612030e3ed8691e
*/
current_value = __sync_val_compare_and_swap(&cached_pid, CACHED_PID_UNSET, CACHED_PID_BUSY);