summaryrefslogtreecommitdiff
path: root/source3/lib/time.c
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2012-09-18 11:56:03 -0700
committerVolker Lendecke <vl@samba.org>2012-09-18 22:39:07 +0200
commit2bbde78ce491cce4ea504cbc583a6935b809d609 (patch)
tree04b779459bbb57cbcf1cf1c3bf0d1385782ff03f /source3/lib/time.c
parentea96d79e21a549204a7f64307059ea877bfb9fd5 (diff)
downloadsamba-2bbde78ce491cce4ea504cbc583a6935b809d609.tar.gz
samba-2bbde78ce491cce4ea504cbc583a6935b809d609.tar.bz2
samba-2bbde78ce491cce4ea504cbc583a6935b809d609.zip
s3: Fix some nonempty line endings
Autobuild-User(master): Volker Lendecke <vl@samba.org> Autobuild-Date(master): Tue Sep 18 22:39:07 CEST 2012 on sn-devel-104
Diffstat (limited to 'source3/lib/time.c')
-rw-r--r--source3/lib/time.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/source3/lib/time.c b/source3/lib/time.c
index a83cb63e82..00cf0f16c1 100644
--- a/source3/lib/time.c
+++ b/source3/lib/time.c
@@ -1,21 +1,21 @@
-/*
+/*
Unix SMB/CIFS implementation.
time handling functions
Copyright (C) Andrew Tridgell 1992-2004
- Copyright (C) Stefan (metze) Metzmacher 2002
+ Copyright (C) Stefan (metze) Metzmacher 2002
Copyright (C) Jeremy Allison 2007
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
-
+
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
@@ -87,17 +87,17 @@ bool nt_time_is_zero(const NTTIME *nt)
/****************************************************************************
Convert ASN.1 GeneralizedTime string to unix-time.
- Returns 0 on failure; Currently ignores timezone.
+ Returns 0 on failure; Currently ignores timezone.
****************************************************************************/
time_t generalized_to_unix_time(const char *str)
-{
+{
struct tm tm;
ZERO_STRUCT(tm);
- if (sscanf(str, "%4d%2d%2d%2d%2d%2d",
- &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
+ if (sscanf(str, "%4d%2d%2d%2d%2d%2d",
+ &tm.tm_year, &tm.tm_mon, &tm.tm_mday,
&tm.tm_hour, &tm.tm_min, &tm.tm_sec) != 6) {
return 0;
}
@@ -164,7 +164,7 @@ void round_timespec(enum timestamp_set_resolution res, struct timespec *ts)
}
/****************************************************************************
- Take a Unix time and convert to an NTTIME structure and place in buffer
+ Take a Unix time and convert to an NTTIME structure and place in buffer
pointed to by p, rounded to the correct resolution.
****************************************************************************/
@@ -372,12 +372,12 @@ void unix_to_nt_time_abs(NTTIME *nt, time_t t)
*nt = 0x7fffffffffffffffLL;
return;
}
-
+
if (t == (time_t)-1) {
/* that's what NT uses for infinite */
*nt = NTTIME_INFINITY;
return;
- }
+ }
d = (double)(t);
d *= 1.0e7;
@@ -423,7 +423,7 @@ const char *display_time(NTTIME nttime)
if (nttime==NTTIME_INFINITY)
return "Never";
- high = 65536;
+ high = 65536;
high = high/10000;
high = high*65536;
high = high/1000;