mirror of
https://github.com/containers/podman.git
synced 2025-08-06 03:19:52 +08:00
events: Fix spelling of newNullEventer
This function changed from public to private which broke the FreeBSD build. Sadly, adding FreeBSD to the cross build isn't currently possible since github.com/godbus/dbus relies on cgo on FreeBSD. I've tried to fix this upstream but my PR is going nowhere - I think this dependency is only needed for systemd which isn't a thing on FreeBSD so it might be possible to work around the problem in libpod by making the systemd code conditional on linux. [NO NEW TESTS NEEDED] Signed-off-by: Doug Rabson <dfr@rabson.org>
This commit is contained in:
@ -14,7 +14,7 @@ func NewEventer(options EventerOptions) (Eventer, error) {
|
|||||||
case strings.ToUpper(LogFile.String()):
|
case strings.ToUpper(LogFile.String()):
|
||||||
return EventLogFile{options}, nil
|
return EventLogFile{options}, nil
|
||||||
case strings.ToUpper(Null.String()):
|
case strings.ToUpper(Null.String()):
|
||||||
return NewNullEventer(), nil
|
return newNullEventer(), nil
|
||||||
case strings.ToUpper(Memory.String()):
|
case strings.ToUpper(Memory.String()):
|
||||||
return NewMemoryEventer(), nil
|
return NewMemoryEventer(), nil
|
||||||
default:
|
default:
|
||||||
|
Reference in New Issue
Block a user