~nskaggs/+junk/xenial-test

« back to all changes in this revision

Viewing changes to src/gopkg.in/natefinch/lumberjack.v2/chown.go

  • Committer: Nicholas Skaggs
  • Date: 2016-10-24 20:56:05 UTC
  • Revision ID: nicholas.skaggs@canonical.com-20161024205605-z8lta0uvuhtxwzwl
Initi with beta15

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// +build !linux
 
2
 
 
3
package lumberjack
 
4
 
 
5
import (
 
6
        "os"
 
7
)
 
8
 
 
9
func chown(_ string, _ os.FileInfo) error {
 
10
        return nil
 
11
}