[xiph-commits] r8096 - icecast/trunk/icecast/src

oddsock at motherfish-iii.xiph.org oddsock at motherfish-iii.xiph.org
Mon Oct 25 08:51:51 PDT 2004


Author: oddsock
Date: 2004-10-25 08:51:50 -0700 (Mon, 25 Oct 2004)
New Revision: 8096

Modified:
   icecast/trunk/icecast/src/logging.c
Log:
fix line endings...


Modified: icecast/trunk/icecast/src/logging.c
===================================================================
--- icecast/trunk/icecast/src/logging.c	2004-10-25 15:42:04 UTC (rev 8095)
+++ icecast/trunk/icecast/src/logging.c	2004-10-25 15:51:50 UTC (rev 8096)
@@ -37,60 +37,60 @@
 /* the global log descriptors */
 int errorlog = 0;
 int accesslog = 0;
-
-#ifdef _WIN32
-/* Since strftime's %z option on win32 is different, we need
-   to go through a few loops to get the same info as %z */
-int get_clf_time (char *buffer, unsigned len, struct tm *t)
-{
-    char    sign;
-    char    *timezone_string;
-    struct tm gmt;
-    time_t time1 = time(NULL);
-    int time_days, time_hours, time_tz;
-    int tempnum1, tempnum2;
-    struct tm *thetime;
-    time_t now;
-
-    gmtime_r(&time1, &gmt);
-
-    time_days = t->tm_yday - gmt.tm_yday;
-
-    if (time_days < -1) {
-        tempnum1 = 24;
-    }
-    else {
-        tempnum1 = 1;
-    }
-    if (tempnum1 < time_days) {
-       tempnum2 = -24;
-    }
-    else {
-        tempnum2 = time_days*24;
-    }
-
-    time_hours = (tempnum2 + t->tm_hour - gmt.tm_hour);
-    time_tz = time_hours * 60 + t->tm_min - gmt.tm_min;
-
-    if (time_tz < 0) {
-        sign = '-';
-        time_tz = -time_tz;
-    }
-    else {
-        sign = '+';
-    }
-    
-    timezone_string = calloc(1, 7);
-    snprintf(timezone_string, 7, " %c%.2d%.2d", sign, time_tz / 60, time_tz % 60);
-
-    now = time(NULL);
-
-    thetime = localtime(&now);
-    strftime (buffer, len-7, "%d/%b/%Y:%H:%M:%S", thetime);
-    strcat(buffer, timezone_string);
-
-    return 1;
-}
+
+#ifdef _WIN32
+/* Since strftime's %z option on win32 is different, we need
+   to go through a few loops to get the same info as %z */
+int get_clf_time (char *buffer, unsigned len, struct tm *t)
+{
+    char    sign;
+    char    *timezone_string;
+    struct tm gmt;
+    time_t time1 = time(NULL);
+    int time_days, time_hours, time_tz;
+    int tempnum1, tempnum2;
+    struct tm *thetime;
+    time_t now;
+
+    gmtime_r(&time1, &gmt);
+
+    time_days = t->tm_yday - gmt.tm_yday;
+
+    if (time_days < -1) {
+        tempnum1 = 24;
+    }
+    else {
+        tempnum1 = 1;
+    }
+    if (tempnum1 < time_days) {
+       tempnum2 = -24;
+    }
+    else {
+        tempnum2 = time_days*24;
+    }
+
+    time_hours = (tempnum2 + t->tm_hour - gmt.tm_hour);
+    time_tz = time_hours * 60 + t->tm_min - gmt.tm_min;
+
+    if (time_tz < 0) {
+        sign = '-';
+        time_tz = -time_tz;
+    }
+    else {
+        sign = '+';
+    }
+    
+    timezone_string = calloc(1, 7);
+    snprintf(timezone_string, 7, " %c%.2d%.2d", sign, time_tz / 60, time_tz % 60);
+
+    now = time(NULL);
+
+    thetime = localtime(&now);
+    strftime (buffer, len-7, "%d/%b/%Y:%H:%M:%S", thetime);
+    strcat(buffer, timezone_string);
+
+    return 1;
+}
 #endif
 /* 
 ** ADDR USER AUTH DATE REQUEST CODE BYTES REFERER AGENT [TIME]
@@ -118,12 +118,12 @@
 
     now = time(NULL);
 
-	localtime_r (&now, &thetime);
+	localtime_r (&now, &thetime);
     /* build the data */
-#ifdef _WIN32
-	memset(datebuf, '\000', sizeof(datebuf));
-	get_clf_time(datebuf, sizeof(datebuf)-1, &thetime);
-#else
+#ifdef _WIN32
+	memset(datebuf, '\000', sizeof(datebuf));
+	get_clf_time(datebuf, sizeof(datebuf)-1, &thetime);
+#else
     strftime (datebuf, sizeof(datebuf), LOGGING_FORMAT_CLF, &thetime);
 #endif
     /* build the request */



More information about the commits mailing list