From e91365f4b3ca6e6b7c30cea7d6700679a313b734 Mon Sep 17 00:00:00 2001 From: Stephane Jourdan Date: Tue, 23 Feb 2016 18:07:41 +0100 Subject: [PATCH] updater: fix typos --- updater/fetchers/debian.go | 2 +- updater/fetchers/rhel.go | 2 +- updater/fetchers/ubuntu.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/updater/fetchers/debian.go b/updater/fetchers/debian.go index f63f73c4..5db254aa 100644 --- a/updater/fetchers/debian.go +++ b/updater/fetchers/debian.go @@ -58,7 +58,7 @@ func init() { // FetchUpdate fetches vulnerability updates from the Debian Security Tracker. func (fetcher *DebianFetcher) FetchUpdate() (resp updater.FetcherResponse, err error) { - log.Info("fetching Debian vulneratibilities") + log.Info("fetching Debian vulnerabilities") // Download JSON. r, err := http.Get(url) diff --git a/updater/fetchers/rhel.go b/updater/fetchers/rhel.go index fd038131..fc2c0fbd 100644 --- a/updater/fetchers/rhel.go +++ b/updater/fetchers/rhel.go @@ -86,7 +86,7 @@ func init() { // FetchUpdate gets vulnerability updates from the Red Hat OVAL definitions. func (f *RHELFetcher) FetchUpdate() (resp updater.FetcherResponse, err error) { - log.Info("fetching Red Hat vulneratibilities") + log.Info("fetching Red Hat vulnerabilities") // Get the first RHSA we have to manage. flagValue, err := database.GetFlagValue(rhelUpdaterFlag) diff --git a/updater/fetchers/ubuntu.go b/updater/fetchers/ubuntu.go index e3fa5845..4de3e4b2 100644 --- a/updater/fetchers/ubuntu.go +++ b/updater/fetchers/ubuntu.go @@ -81,7 +81,7 @@ func init() { // FetchUpdate gets vulnerability updates from the Ubuntu CVE Tracker. func (fetcher *UbuntuFetcher) FetchUpdate() (resp updater.FetcherResponse, err error) { - log.Info("fetching Ubuntu vulneratibilities") + log.Info("fetching Ubuntu vulnerabilities") // Check to see if the repository does not already exist. if _, pathExists := os.Stat(repositoryLocalPath); repositoryLocalPath == "" || os.IsNotExist(pathExists) {