Skip to content

Commit

Permalink
updater: fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Jourdan committed Feb 23, 2016
1 parent 5469937 commit e91365f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion updater/fetchers/debian.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion updater/fetchers/rhel.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion updater/fetchers/ubuntu.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit e91365f

Please sign in to comment.