diff options
author | anholt <anholt@FreeBSD.org> | 2005-05-06 20:47:09 +0000 |
---|---|---|
committer | anholt <anholt@FreeBSD.org> | 2005-05-06 20:47:09 +0000 |
commit | b6be180393e065e9f77a7bad567f8aecf838e0da (patch) | |
tree | cc14d1a695ed4321a61e685d154659f298aa62b2 /sys/fs/smbfs | |
parent | 6a69a04d9c4eedd3a931bb687599de799357c051 (diff) | |
download | FreeBSD-src-b6be180393e065e9f77a7bad567f8aecf838e0da.zip FreeBSD-src-b6be180393e065e9f77a7bad567f8aecf838e0da.tar.gz |
Staticize a symbol used only in this file.
PR: kern/43613
Submitted by: Matt Emmerton, matt at gsicomp dot on dot ca
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r-- | sys/fs/smbfs/smbfs_subr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/smbfs/smbfs_subr.c b/sys/fs/smbfs/smbfs_subr.c index 1d26ac1..a91cc79 100644 --- a/sys/fs/smbfs/smbfs_subr.c +++ b/sys/fs/smbfs/smbfs_subr.c @@ -122,7 +122,7 @@ smb_time_server2local(u_long seconds, int tzoff, struct timespec *tsp) /* * Number of seconds between 1970 and 1601 year */ -int64_t DIFF1970TO1601 = 11644473600ULL; +static int64_t DIFF1970TO1601 = 11644473600ULL; /* * Time from server comes as UTC, so no need to use tz |