You are not logged in.

#1 2023-02-01 19:51:03

myles
Member
Registered: 2011-10-06
Posts: 40

git-upload-pack: error loading libcrypto.so.1.0.0

Hello, Does anyone have an idea why I get this error and how to fix it?

$ git fetch
git-upload-pack: error while loading shared libraries: libcrypto.so.1.0.0: cannot open shared object file: No such file or directory
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.
$ which -a git-upload-pack
/usr/bin/git-upload-pack
$ ldd /usr/bin/git-upload-pack
	linux-vdso.so.1 (0x00007ffde129a000)
	libpcre2-8.so.0 => /usr/lib/libpcre2-8.so.0 (0x00007fe212d65000)
	libz.so.1 => /usr/lib/libz.so.1 (0x00007fe2131fd000)
	libc.so.6 => /usr/lib/libc.so.6 (0x00007fe212b7e000)
	/lib64/ld-linux-x86-64.so.2 => /usr/lib64/ld-linux-x86-64.so.2 (0x00007fe21323a000)
$ sudo pacman -Qo /lib/libcrypt*
/usr/lib/libcrypto.so is owned by openssl 3.0.7-4
/usr/lib/libcrypto.so.1.1 is owned by openssl-1.1 1.1.1.s-4
/usr/lib/libcrypto.so.3 is owned by openssl 3.0.7-4
/usr/lib/libcryptsetup.so is owned by cryptsetup 2.6.0-1
/usr/lib/libcryptsetup.so.12 is owned by cryptsetup 2.6.0-1
/usr/lib/libcryptsetup.so.12.9.0 is owned by cryptsetup 2.6.0-1
/usr/lib/libcrypt.so is owned by libxcrypt 4.4.33-1
/usr/lib/libcrypt.so.1 is owned by libxcrypt-compat 4.4.33-1
/usr/lib/libcrypt.so.1.1.0 is owned by libxcrypt-compat 4.4.33-1
/usr/lib/libcrypt.so.2 is owned by libxcrypt 4.4.33-1
/usr/lib/libcrypt.so.2.0.0 is owned by libxcrypt 4.4.33-1

Reinstalling git and its dependencies and openssl etc doesn't help.  Guix is also installed on
this machine but I disabled it to investigate this problem because I had
thought that maybe git had linked to some libraries from it.  Also, I don't know if it is
related but I sometimes have to run update-ca-trust.

Offline

#2 2023-02-01 20:12:15

loqs
Member
Registered: 2014-03-06
Posts: 18,963

Re: git-upload-pack: error loading libcrypto.so.1.0.0

What is the output of the following (requires pax-utils)

lddtree /usr/lib/git-core/git-upload-pack

Offline

#3 2023-02-01 20:46:38

myles
Member
Registered: 2011-10-06
Posts: 40

Re: git-upload-pack: error loading libcrypto.so.1.0.0

Thanks for replying.

$ lddtree /usr/lib/git-core/git-upload-pack
/usr/lib/git-core/git-upload-pack (interpreter => /lib64/ld-linux-x86-64.so.2)
    libpcre2-8.so.0 => /usr/lib/libpcre2-8.so.0
    libz.so.1 => /usr/lib/libz.so.1
    libc.so.6 => /usr/lib/libc.so.6

Offline

#4 2023-02-01 21:53:27

loqs
Member
Registered: 2014-03-06
Posts: 18,963

Re: git-upload-pack: error loading libcrypto.so.1.0.0

Apologies wrong binary

lddtree /usr/lib/git-core/git-http-fetch

Offline

#5 2023-02-01 23:05:23

myles
Member
Registered: 2011-10-06
Posts: 40

Re: git-upload-pack: error loading libcrypto.so.1.0.0

$ lddtree /usr/lib/git-core/git-http-fetch
/usr/lib/git-core/git-http-fetch (interpreter => /lib64/ld-linux-x86-64.so.2)
    libcurl.so.4 => /usr/lib/libcurl.so.4
        libnghttp2.so.14 => /usr/lib/libnghttp2.so.14
        libidn2.so.0 => /usr/lib/libidn2.so.0
            libunistring.so.5 => /usr/lib/libunistring.so.5
        libssh2.so.1 => /usr/lib/libssh2.so.1
        libpsl.so.5 => /usr/lib/libpsl.so.5
        libssl.so.3 => /usr/lib/libssl.so.3
        libcrypto.so.3 => /usr/lib/libcrypto.so.3
        libgssapi_krb5.so.2 => /usr/lib/libgssapi_krb5.so.2
            libkrb5.so.3 => /usr/lib/libkrb5.so.3
            libk5crypto.so.3 => /usr/lib/libk5crypto.so.3
            libcom_err.so.2 => /usr/lib/libcom_err.so.2
            libkrb5support.so.0 => /usr/lib/libkrb5support.so.0
            libkeyutils.so.1 => /usr/lib/libkeyutils.so.1
            libresolv.so.2 => /usr/lib/libresolv.so.2
        libzstd.so.1 => /usr/lib/libzstd.so.1
        libbrotlidec.so.1 => /usr/lib/libbrotlidec.so.1
            libbrotlicommon.so.1 => /usr/lib/libbrotlicommon.so.1
    libpcre2-8.so.0 => /usr/lib/libpcre2-8.so.0
    libz.so.1 => /usr/lib/libz.so.1
    libc.so.6 => /usr/lib/libc.so.6

Offline

#6 2023-02-01 23:16:11

loqs
Member
Registered: 2014-03-06
Posts: 18,963

Re: git-upload-pack: error loading libcrypto.so.1.0.0

Which looks fine.  So a different approach,  use strace (requires strace package)

$ strace -f -e trace=file -o git.strace.txt git fetch

Then post the contents of git.strace.txt.

Offline

#7 2023-02-01 23:38:26

myles
Member
Registered: 2011-10-06
Posts: 40

Re: git-upload-pack: error loading libcrypto.so.1.0.0

Here is git.strace.txt , nothing really jumps out at me:

1395  execve("/usr/bin/git", ["git", "fetch"], 0x7ffde4a95ba0 /* 79 vars */) = 0
1395  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=133687, ...}, AT_EMPTY_PATH) = 0
1395  openat(AT_FDCWD, "/usr/lib/libpcre2-8.so.0", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=633072, ...}, AT_EMPTY_PATH) = 0
1395  openat(AT_FDCWD, "/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=100288, ...}, AT_EMPTY_PATH) = 0
1395  openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1953472, ...}, AT_EMPTY_PATH) = 0
1395  openat(AT_FDCWD, "/dev/null", O_RDWR) = 3
1395  openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3053472, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(AT_FDCWD, "/usr/share/locale", {st_mode=S_IFDIR|0755, st_size=1486, ...}, 0) = 0
1395  access("/etc/gitconfig", R_OK)    = -1 ENOENT (No such file or directory)
1395  access("/home/myles/.config/git/config", R_OK) = 0
1395  openat(AT_FDCWD, "/home/myles/.config/git/config", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=695, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=695, ...}, AT_EMPTY_PATH) = 0
1395  access("/home/myles/.gitconfig", R_OK) = -1 ENOENT (No such file or directory)
1395  getcwd("/home/myles.homedir/MYGITREPO", 129) = 38
1395  getcwd("/home/myles.homedir/MYGITREPO", 129) = 38
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO", {st_mode=S_IFDIR|0755, st_size=318, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO/.git", {st_mode=S_IFDIR|0755, st_size=240, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO/.git/HEAD", {st_mode=S_IFREG|0644, st_size=21, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  openat(AT_FDCWD, "/home/myles.homedir/MYGITREPO/.git/HEAD", O_RDONLY) = 3
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO/.git/commondir", 0x7ffe88299f60, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  access("/home/myles.homedir/MYGITREPO/.git/objects", X_OK) = 0
1395  access("/home/myles.homedir/MYGITREPO/.git/refs", X_OK) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO", {st_mode=S_IFDIR|0755, st_size=318, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO/.git", {st_mode=S_IFDIR|0755, st_size=240, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  newfstatat(AT_FDCWD, ".git/commondir", 0x7ffe8829a090, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, ".git/config", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=369, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=369, ...}, AT_EMPTY_PATH) = 0
1395  getcwd("/home/myles.homedir/MYGITREPO", 129) = 38
1395  newfstatat(AT_FDCWD, ".git", {st_mode=S_IFDIR|0755, st_size=240, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/commondir", 0x7ffe8829a010, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/home", {st_mode=S_IFDIR|0755, st_size=56, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir", {st_mode=S_IFDIR|0700, st_size=3104, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/REDACTED", {st_mode=S_IFDIR|0755, st_size=362, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO", {st_mode=S_IFDIR|0755, st_size=318, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  access("/etc/gitconfig", R_OK)    = -1 ENOENT (No such file or directory)
1395  access("/home/myles/.config/git/config", R_OK) = 0
1395  openat(AT_FDCWD, "/home/myles/.config/git/config", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=695, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=695, ...}, AT_EMPTY_PATH) = 0
1395  access("/home/myles/.gitconfig", R_OK) = -1 ENOENT (No such file or directory)
1395  access(".git/config", R_OK)       = 0
1395  openat(AT_FDCWD, ".git/config", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=369, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=369, ...}, AT_EMPTY_PATH) = 0
1395  access("/etc/gitconfig", R_OK)    = -1 ENOENT (No such file or directory)
1395  access("/home/myles/.config/git/config", R_OK) = 0
1395  openat(AT_FDCWD, "/home/myles/.config/git/config", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=695, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=695, ...}, AT_EMPTY_PATH) = 0
1395  access("/home/myles/.gitconfig", R_OK) = -1 ENOENT (No such file or directory)
1395  access(".git/config", R_OK)       = 0
1395  openat(AT_FDCWD, ".git/config", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=369, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=369, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(AT_FDCWD, "/home/myles.homedir/MYGITREPO/.gitmodules", 0x7ffe8829a010, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, ".git/commondir", 0x7ffe88299c00, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, ".git/index", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1598, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(AT_FDCWD, ".git/HEAD", {st_mode=S_IFREG|0644, st_size=21, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  openat(AT_FDCWD, ".git/HEAD", O_RDONLY) = 3
1395  newfstatat(AT_FDCWD, ".git/refs/heads/main", {st_mode=S_IFREG|0644, st_size=41, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  openat(AT_FDCWD, ".git/refs/heads/main", O_RDONLY) = 3
1395  newfstatat(AT_FDCWD, ".git/refs/HEAD", 0x7ffe88299be0, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, ".git/packed-refs", O_RDONLY) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=164, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=164, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/tags/HEAD", 0x7ffe88299be0, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, ".git/packed-refs", {st_mode=S_IFREG|0644, st_size=164, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/heads/HEAD", 0x7ffe88299be0, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, ".git/packed-refs", {st_mode=S_IFREG|0644, st_size=164, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/remotes/HEAD", 0x7ffe88299be0, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, ".git/packed-refs", {st_mode=S_IFREG|0644, st_size=164, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/remotes/HEAD/HEAD", 0x7ffe88299be0, AT_SYMLINK_NOFOLLOW) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, ".git/packed-refs", {st_mode=S_IFREG|0644, st_size=164, ...}, 0) = 0
1395  openat(AT_FDCWD, ".git/refs/", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
1395  newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=32, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/heads", {st_mode=S_IFDIR|0755, st_size=32, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/remotes", {st_mode=S_IFDIR|0755, st_size=6, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/refs/tags", {st_mode=S_IFDIR|0755, st_size=0, ...}, 0) = 0
1395  newfstatat(AT_FDCWD, ".git/packed-refs", {st_mode=S_IFREG|0644, st_size=164, ...}, 0) = 0
1395  openat(AT_FDCWD, ".git/objects/info/alternates", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, ".git/objects/pack/multi-pack-index", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, ".git/objects/pack", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 3
1395  newfstatat(3, "", {st_mode=S_IFDIR|0755, st_size=198, ...}, AT_EMPTY_PATH) = 0
1395  access(".git/objects/pack/pack-35ee34902c77c9f5a1f161470282353d3a6b6783.keep", F_OK) = -1 ENOENT (No such file or directory)
1395  access(".git/objects/pack/pack-35ee34902c77c9f5a1f161470282353d3a6b6783.promisor", F_OK) = -1 ENOENT (No such file or directory)
1395  access(".git/objects/pack/pack-35ee34902c77c9f5a1f161470282353d3a6b6783.mtimes", F_OK) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, ".git/objects/pack/pack-35ee34902c77c9f5a1f161470282353d3a6b6783.pack", {st_mode=S_IFREG|0444, st_size=129918, ...}, 0) = 0
1395  openat(AT_FDCWD, ".git/objects/pack/pack-35ee34902c77c9f5a1f161470282353d3a6b6783.idx", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=18096, ...}, AT_EMPTY_PATH) = 0
1395  openat(AT_FDCWD, ".git/objects/pack/pack-35ee34902c77c9f5a1f161470282353d3a6b6783.pack", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0444, st_size=129918, ...}, AT_EMPTY_PATH) = 0
1395  newfstatat(AT_FDCWD, ".git/HEAD", {st_mode=S_IFREG|0644, st_size=21, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  openat(AT_FDCWD, ".git/HEAD", O_RDONLY) = 3
1395  newfstatat(AT_FDCWD, ".git/refs/heads/main", {st_mode=S_IFREG|0644, st_size=41, ...}, AT_SYMLINK_NOFOLLOW) = 0
1395  openat(AT_FDCWD, ".git/refs/heads/main", O_RDONLY) = 3
1395  openat(AT_FDCWD, ".git/FETCH_HEAD", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3
1395  newfstatat(AT_FDCWD, "/usr/lib/git-core/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/usr/local/bin/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/home/myles/bin/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/home/myles/bin/sys/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/home/myles/bin/sys/panel/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/home/myles/myaur/bin/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/usr/lib/jvm/default/bin/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/usr/local/sbin/ssh", 0x7ffe88299c90, 0) = -1 ENOENT (No such file or directory)
1395  newfstatat(AT_FDCWD, "/usr/bin/ssh", {st_mode=S_IFREG|0755, st_size=817768, ...}, 0) = 0
1396  execve("/usr/bin/ssh", ["/usr/bin/ssh", "-o", "SendEnv=GIT_PROTOCOL", "MYHOST", "git-upload-pack 'MYGITRE"...], 0x55dff989f6d0 /* 81 vars */) = 0
1396  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=133687, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libcrypto.so.3", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=4484080, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libldns.so.3", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=439968, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libgssapi_krb5.so.2", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=344160, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libz.so.1", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=100288, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1953472, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libssl.so.3", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=651008, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libkrb5.so.3", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=882552, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libk5crypto.so.3", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=182128, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libcom_err.so.2", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=18296, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libkrb5support.so.0", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=55352, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libkeyutils.so.1", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=22200, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/libresolv.so.2", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=59784, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/dev/null", O_RDWR) = 3
1396  openat(AT_FDCWD, "/etc/ssl/openssl.cnf", O_RDONLY) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=12292, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3053472, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/config", O_RDONLY) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1975, ...}, AT_EMPTY_PATH) = 0
1396  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1975, ...}, AT_EMPTY_PATH) = 0
1396  access("/usr/bin/zsh", X_OK)      = 0
1397  openat(AT_FDCWD, "/dev/null", O_RDWR) = 4
1397  execve("/usr/bin/zsh", ["/usr/bin/zsh", "-c", "gpg-connect-agent UPDATESTARTUPT"...], 0x55aa728cf3b0 /* 81 vars */) = 0
1397  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=133687, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libcap.so.2", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=42984, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libncursesw.so.6", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=474328, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libm.so.6", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=944608, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1953472, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3053472, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/dev/tty", O_RDWR|O_NOCTTY) = 3
1397  newfstatat(10, "", {st_mode=S_IFCHR|0666, st_rdev=makedev(0x5, 0), ...}, AT_EMPTY_PATH) = 0
1397  readlink("/proc/self/fd/10", "/dev/tty", 4095) = 8
1397  newfstatat(AT_FDCWD, "/dev/tty", {st_mode=S_IFCHR|0666, st_rdev=makedev(0x5, 0), ...}, 0) = 0
1397  newfstatat(AT_FDCWD, "/home/myles", {st_mode=S_IFDIR|0700, st_size=3104, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=318, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, "/home/myles/MYGITREPO", {st_mode=S_IFDIR|0755, st_size=318, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, ".", {st_mode=S_IFDIR|0755, st_size=318, ...}, 0) = 0
1397  openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.cache", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules", O_RDONLY|O_CLOEXEC) = 11
1397  newfstatat(11, "", {st_mode=S_IFREG|0644, st_size=3916, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.d", O_RDONLY|O_NONBLOCK|O_CLOEXEC|O_DIRECTORY) = 11
1397  newfstatat(11, "", {st_mode=S_IFDIR|0755, st_size=48, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/gconv/gconv-modules.d/gconv-modules-extra.conf", O_RDONLY|O_CLOEXEC) = 12
1397  newfstatat(12, "", {st_mode=S_IFREG|0644, st_size=53974, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/proc/self/loginuid", O_RDONLY) = 11
1397  newfstatat(AT_FDCWD, "/etc/zsh/zshenv.zwc", 0x7ffc28d59aa0, 0) = -1 ENOENT (No such file or directory)
1397  newfstatat(AT_FDCWD, "/etc/zsh/zshenv", 0x7ffc28d59a10, 0) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/etc/zsh/zshenv", O_RDONLY|O_NOCTTY) = -1 ENOENT (No such file or directory)
1397  newfstatat(AT_FDCWD, "/home/myles/.zshenv.zwc", 0x7ffc28d59aa0, 0) = -1 ENOENT (No such file or directory)
1397  newfstatat(AT_FDCWD, "/home/myles/.zshenv", {st_mode=S_IFREG|0600, st_size=2860, ...}, 0) = 0
1397  openat(AT_FDCWD, "/home/myles/.zshenv", O_RDONLY|O_NOCTTY) = 3
1397  access("/home/myles/.config/zsh/path_var", F_OK) = 0
1397  newfstatat(AT_FDCWD, "/home/myles/.config/zsh/path_var", {st_mode=S_IFREG|0600, st_size=719, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, "/home/myles/.config/zsh/path_var.zwc", 0x7ffc28d57cd0, 0) = -1 ENOENT (No such file or directory)
1397  newfstatat(AT_FDCWD, "/home/myles/.config/zsh/path_var", {st_mode=S_IFREG|0600, st_size=719, ...}, 0) = 0
1397  openat(AT_FDCWD, "/home/myles/.config/zsh/path_var", O_RDONLY|O_NOCTTY) = 3
1397  openat(AT_FDCWD, "/dev/null", O_RDONLY|O_NOCTTY) = 3
1397  access("/usr/local/bin/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/home/myles/bin/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/home/myles/bin/sys/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/home/myles/bin/sys/panel/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/home/myles/myaur/bin/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/usr/lib/jvm/default/bin/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/usr/lib/git-core/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/usr/local/sbin/gpg-connect-agent", X_OK) = -1 ENOENT (No such file or directory)
1397  access("/usr/bin/gpg-connect-agent", X_OK) = 0
1397  newfstatat(AT_FDCWD, "/usr/bin/gpg-connect-agent", {st_mode=S_IFREG|0755, st_size=80520, ...}, 0) = 0
1397  execve("/usr/bin/gpg-connect-agent", ["gpg-connect-agent", "UPDATESTARTUPTTY", "/bye"], 0x7ffc28d59f28 /* 81 vars */) = 0
1397  access("/etc/ld.so.preload", R_OK) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/etc/ld.so.cache", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=133687, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libassuan.so.0", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=79864, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libgcrypt.so.20", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1340656, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libgpg-error.so.0", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=149552, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libreadline.so.8", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=351176, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libc.so.6", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=1953472, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/libncursesw.so.6", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0755, st_size=474328, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/lib/locale/locale-archive", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=3053472, ...}, AT_EMPTY_PATH) = 0
1397  readlink("/proc/self/exe", "/usr/bin/gpg-connect-agent", 255) = 26
1397  access("/usr/bin/gpgconf.ctl", F_OK) = -1 ENOENT (No such file or directory)
1397  access("/etc/gcrypt/fips_enabled", F_OK) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/proc/sys/crypto/fips_enabled", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/etc/gcrypt/hwf.deny", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3
1397  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2998, ...}, AT_EMPTY_PATH) = 0
1397  openat(AT_FDCWD, "/usr/share/locale/en_GB.UTF-8/LC_MESSAGES/libgpg-error.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/share/locale/en_GB.utf8/LC_MESSAGES/libgpg-error.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/share/locale/en_GB/LC_MESSAGES/libgpg-error.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/share/locale/en.UTF-8/LC_MESSAGES/libgpg-error.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/share/locale/en.utf8/LC_MESSAGES/libgpg-error.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  openat(AT_FDCWD, "/usr/share/locale/en/LC_MESSAGES/libgpg-error.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1397  newfstatat(AT_FDCWD, "/run/user/1000", {st_mode=S_IFDIR|0700, st_size=320, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, "/run/user/1000/gnupg", {st_mode=S_IFDIR|0700, st_size=160, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, "/run/user/1000/gnupg/S.gpg-agent", {st_mode=S_IFSOCK|0600, st_size=0, ...}, 0) = 0
1397  newfstatat(AT_FDCWD, "/run/user/1000/gnupg/S.gpg-agent", {st_mode=S_IFSOCK|0600, st_size=0, ...}, 0) = 0
1397  newfstatat(1, "", {st_mode=S_IFCHR|0666, st_rdev=makedev(0x1, 0x3), ...}, AT_EMPTY_PATH) = 0
1397  +++ exited with 0 +++
1396  --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=1397, si_uid=1000, si_status=0, si_utime=0, si_stime=0} ---
1396  openat(AT_FDCWD, "/etc/ssh/ssh_config", O_RDONLY) = 3
1396  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=1531, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_rsa", O_RDONLY) = 4
1396  newfstatat(4, "", {st_mode=S_IFREG|0600, st_size=3326, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_rsa.pub", O_RDONLY) = 4
1396  newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=736, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_rsa-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_rsa-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_rsa-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa_sk", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa_sk.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa_sk", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa_sk-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa_sk-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ecdsa_sk-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519", O_RDONLY) = 4
1396  newfstatat(4, "", {st_mode=S_IFREG|0600, st_size=444, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519.pub", O_RDONLY) = 4
1396  newfstatat(4, "", {st_mode=S_IFREG|0644, st_size=92, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519_sk", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519_sk.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519_sk", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519_sk-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519_sk-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_ed25519_sk-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_xmss", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_xmss.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_xmss", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_xmss-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_xmss-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_xmss-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_dsa", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_dsa.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_dsa", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_dsa-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_dsa-cert.pub", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/id_dsa-cert", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/known_hosts", O_RDONLY) = 4
1396  newfstatat(4, "", {st_mode=S_IFREG|0600, st_size=12315, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/known_hosts2", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/etc/ssh/ssh_known_hosts", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/etc/ssh/ssh_known_hosts2", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/home/myles/.ssh/known_hosts", O_RDONLY) = 4
1396  newfstatat(4, "", {st_mode=S_IFREG|0600, st_size=12315, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/known_hosts2", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/etc/ssh/ssh_known_hosts", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/etc/ssh/ssh_known_hosts2", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  openat(AT_FDCWD, "/dev/null", O_RDWR) = 7
1396  openat(AT_FDCWD, "/home/myles/.ssh/known_hosts", O_RDONLY) = 7
1396  newfstatat(7, "", {st_mode=S_IFREG|0600, st_size=12315, ...}, AT_EMPTY_PATH) = 0
1396  openat(AT_FDCWD, "/home/myles/.ssh/known_hosts2", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/usr/share/locale/locale.alias", O_RDONLY|O_CLOEXEC) = 3
1395  newfstatat(3, "", {st_mode=S_IFREG|0644, st_size=2998, ...}, AT_EMPTY_PATH) = 0
1395  openat(AT_FDCWD, "/usr/share/locale/en_GB.UTF-8/LC_MESSAGES/git.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/usr/share/locale/en_GB.utf8/LC_MESSAGES/git.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/usr/share/locale/en_GB/LC_MESSAGES/git.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/usr/share/locale/en.UTF-8/LC_MESSAGES/git.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/usr/share/locale/en.utf8/LC_MESSAGES/git.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1395  openat(AT_FDCWD, "/usr/share/locale/en/LC_MESSAGES/git.mo", O_RDONLY) = -1 ENOENT (No such file or directory)
1396  +++ exited with 127 +++
1395  --- SIGCHLD {si_signo=SIGCHLD, si_code=CLD_EXITED, si_pid=1396, si_uid=1000, si_status=127, si_utime=16 /* 0.16 s */, si_stime=1 /* 0.01 s */} ---
1395  +++ exited with 128 +++

Offline

Board footer

Powered by FluxBB