mirror of
https://github.com/containers/podman.git
synced 2025-05-17 23:26:08 +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()):
|
||||
return EventLogFile{options}, nil
|
||||
case strings.ToUpper(Null.String()):
|
||||
return NewNullEventer(), nil
|
||||
return newNullEventer(), nil
|
||||
case strings.ToUpper(Memory.String()):
|
||||
return NewMemoryEventer(), nil
|
||||
default:
|
||||
|
Reference in New Issue
Block a user