Merge pull request #75 from sjourdan/fix_vuln_typo

updater: fix typos
This commit is contained in:
Quentin Machu 2016-02-23 13:42:35 -05:00
commit 1a0f4a0f75
3 changed files with 3 additions and 3 deletions

View File

@ -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)

View File

@ -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)

View File

@ -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) {