Compare commits

...

2 commits

Author SHA1 Message Date
b2f6d0d478 use latest sys 2024-08-19 20:37:21 +02:00
77230f5240 update dependencies 2022-10-08 16:59:34 +02:00
10 changed files with 19 additions and 11 deletions

View file

@ -1,4 +1,4 @@
Copyright (C) 2017 Marius Schellenberger Copyright (C) 2022 Marius Schellenberger
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without

4
go.mod
View file

@ -1,3 +1,5 @@
module git.giftfish.de/ston1th/godrop/v2 module git.giftfish.de/ston1th/godrop/v2
require golang.org/x/sys v0.0.0-20181026144532-2772b66316d2 // indirect go 1.19
require golang.org/x/sys v0.24.0

4
go.sum
View file

@ -1,2 +1,2 @@
golang.org/x/sys v0.0.0-20181026144532-2772b66316d2 h1:W7CqTdBJ1CmxLKe7LptKDnBYV6PHrVLiGnoyBjaG/JQ= golang.org/x/sys v0.24.0 h1:Twjiwq9dn6R1fQcyiK+wQyHWfaz/BJB+YIpzU/Cv3Xg=
golang.org/x/sys v0.0.0-20181026144532-2772b66316d2/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.24.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=

View file

@ -1,5 +1,6 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
//go:build go1.11
// +build go1.11 // +build go1.11
// Package godrop provides a simple library to drop privileges on Linux and OpenBSD. // Package godrop provides a simple library to drop privileges on Linux and OpenBSD.

View file

@ -1,5 +1,6 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
//go:build go1.11
// +build go1.11 // +build go1.11
package godrop package godrop

View file

@ -1,4 +1,4 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
package godrop package godrop

View file

@ -1,5 +1,6 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
//go:build !openbsd
// +build !openbsd // +build !openbsd
package godrop package godrop

View file

@ -1,5 +1,6 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
//go:build openbsd
// +build openbsd // +build openbsd
package godrop package godrop

View file

@ -1,5 +1,6 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
//go:build !openbsd
// +build !openbsd // +build !openbsd
package godrop package godrop

View file

@ -1,5 +1,6 @@
// Copyright (C) 2018 Marius Schellenberger // Copyright (C) 2022 Marius Schellenberger
//go:build openbsd
// +build openbsd // +build openbsd
package godrop package godrop