gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r25437 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r25437 - gnunet/src/util
Date: Thu, 13 Dec 2012 10:22:15 +0100

Author: grothoff
Date: 2012-12-13 10:22:15 +0100 (Thu, 13 Dec 2012)
New Revision: 25437

Modified:
   gnunet/src/util/disk.c
   gnunet/src/util/w32cat.c
Log:
-dos2unix

Modified: gnunet/src/util/disk.c
===================================================================
--- gnunet/src/util/disk.c      2012-12-13 09:11:10 UTC (rev 25436)
+++ gnunet/src/util/disk.c      2012-12-13 09:22:15 UTC (rev 25437)
@@ -436,12 +436,14 @@
   return fn;
 }
 
+
 #if WINDOWS
 static char *
 mkdtemp (char *fn)
 {
   char *random_fn;
   char *tfn;
+
   while (1)
   {
     tfn = GNUNET_strdup (fn);

Modified: gnunet/src/util/w32cat.c
===================================================================
--- gnunet/src/util/w32cat.c    2012-12-13 09:11:10 UTC (rev 25436)
+++ gnunet/src/util/w32cat.c    2012-12-13 09:22:15 UTC (rev 25437)
@@ -17,92 +17,92 @@
      Free Software Foundation, Inc., 59 Temple Place - Suite 330,
      Boston, MA 02111-1307, USA.
 */
-
-#include <stdio.h>
-#include <windows.h>
-
-int
-main (int argc, char **argv)
-{
-  HANDLE stdi, stdo;
-  BOOL b;
-  wchar_t *commandlinew, **argvw;
-  int argcw;
-  int i;
-
-  stdo = GetStdHandle (STD_OUTPUT_HANDLE);
-  if (stdo == INVALID_HANDLE_VALUE || stdo == NULL)
-    return 1;
-
-  commandlinew = GetCommandLineW ();
-  argvw = CommandLineToArgvW (commandlinew, &argcw);
-  if (argvw == NULL)
-    return 1;
-
-  for (i = 1; i < argcw || argcw == 1; i++)
-  {
-    DWORD r, w;
-    int is_dash = wcscmp (argvw[i], L"-") == 0;
-    if (argcw == 1 || is_dash)
-    {
-      stdi = GetStdHandle (STD_INPUT_HANDLE);
-      if (stdi == INVALID_HANDLE_VALUE)
-      {
-        fprintf (stderr, "cat: Failed to obtain stdin handle.\n");
-        return 4;
-      }
-      if (stdi == NULL)
-      {
-        fprintf (stderr, "cat: Have no stdin.\n");
-        return 5;
-      }
-    }
-    else
-    {
-      stdi = CreateFileW (argvw[i], GENERIC_READ, FILE_SHARE_DELETE | 
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 
FILE_FLAG_SEQUENTIAL_SCAN, NULL);
-      if (stdi == INVALID_HANDLE_VALUE)
-      {
-        wchar_t *msgbuf;
-        DWORD le = GetLastError ();
-        if (0 < FormatMessageW (FORMAT_MESSAGE_ALLOCATE_BUFFER | 
FORMAT_MESSAGE_FROM_SYSTEM, 0, le, 0, (wchar_t *) &msgbuf, 0, NULL))
-        {
-          fprintf (stderr, "cat: Failed to open file `%S'. Error %lu.\n", 
argvw[i], le);
-          return 3;
-        }
-        fprintf (stderr, "cat: Failed to open file `%S'. Error %lu: %S\n", 
argvw[i], le, msgbuf);
-        if (msgbuf != NULL)
-          LocalFree (msgbuf);
-        return 2;
-      }
-    }
-    do
-    {
-      unsigned char c;
-      b = ReadFile (stdi, &c, 1, &r, NULL);
-      if (b && r > 0)
-      {
-        b = WriteFile (stdo, &c, 1, &w, NULL);
-        if (b == 0)
-        {
-          wchar_t *msgbuf;
-          DWORD le = GetLastError ();
-          if (0 < FormatMessageW (FORMAT_MESSAGE_ALLOCATE_BUFFER | 
FORMAT_MESSAGE_FROM_SYSTEM, 0, le, 0, (wchar_t *) &msgbuf, 0, NULL))
-          {
-            fprintf (stderr, "cat: Failed to write into stdout. Error %lu.\n", 
le);
-            return 3;
-          }
-          fprintf (stderr, "cat: Failed to write into stdout. Error %lu: 
%S\n", le, msgbuf);
-          if (msgbuf != NULL)
-            LocalFree (msgbuf);
-          return 6;
-        }
-      }
-    } while (b && r > 0);
-    if (argcw == 1)
-      break;
-    if (!is_dash)
-      CloseHandle (stdi);
-  }
-  LocalFree (argvw);
-  return 0;
-}
+
+#include <stdio.h>
+#include <windows.h>
+
+int
+main (int argc, char **argv)
+{
+  HANDLE stdi, stdo;
+  BOOL b;
+  wchar_t *commandlinew, **argvw;
+  int argcw;
+  int i;
+
+  stdo = GetStdHandle (STD_OUTPUT_HANDLE);
+  if (stdo == INVALID_HANDLE_VALUE || stdo == NULL)
+    return 1;
+
+  commandlinew = GetCommandLineW ();
+  argvw = CommandLineToArgvW (commandlinew, &argcw);
+  if (argvw == NULL)
+    return 1;
+
+  for (i = 1; i < argcw || argcw == 1; i++)
+  {
+    DWORD r, w;
+    int is_dash = wcscmp (argvw[i], L"-") == 0;
+    if (argcw == 1 || is_dash)
+    {
+      stdi = GetStdHandle (STD_INPUT_HANDLE);
+      if (stdi == INVALID_HANDLE_VALUE)
+      {
+        fprintf (stderr, "cat: Failed to obtain stdin handle.\n");
+        return 4;
+      }
+      if (stdi == NULL)
+      {
+        fprintf (stderr, "cat: Have no stdin.\n");
+        return 5;
+      }
+    }
+    else
+    {
+      stdi = CreateFileW (argvw[i], GENERIC_READ, FILE_SHARE_DELETE | 
FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 
FILE_FLAG_SEQUENTIAL_SCAN, NULL);
+      if (stdi == INVALID_HANDLE_VALUE)
+      {
+        wchar_t *msgbuf;
+        DWORD le = GetLastError ();
+        if (0 < FormatMessageW (FORMAT_MESSAGE_ALLOCATE_BUFFER | 
FORMAT_MESSAGE_FROM_SYSTEM, 0, le, 0, (wchar_t *) &msgbuf, 0, NULL))
+        {
+          fprintf (stderr, "cat: Failed to open file `%S'. Error %lu.\n", 
argvw[i], le);
+          return 3;
+        }
+        fprintf (stderr, "cat: Failed to open file `%S'. Error %lu: %S\n", 
argvw[i], le, msgbuf);
+        if (msgbuf != NULL)
+          LocalFree (msgbuf);
+        return 2;
+      }
+    }
+    do
+    {
+      unsigned char c;
+      b = ReadFile (stdi, &c, 1, &r, NULL);
+      if (b && r > 0)
+      {
+        b = WriteFile (stdo, &c, 1, &w, NULL);
+        if (b == 0)
+        {
+          wchar_t *msgbuf;
+          DWORD le = GetLastError ();
+          if (0 < FormatMessageW (FORMAT_MESSAGE_ALLOCATE_BUFFER | 
FORMAT_MESSAGE_FROM_SYSTEM, 0, le, 0, (wchar_t *) &msgbuf, 0, NULL))
+          {
+            fprintf (stderr, "cat: Failed to write into stdout. Error %lu.\n", 
le);
+            return 3;
+          }
+          fprintf (stderr, "cat: Failed to write into stdout. Error %lu: 
%S\n", le, msgbuf);
+          if (msgbuf != NULL)
+            LocalFree (msgbuf);
+          return 6;
+        }
+      }
+    } while (b && r > 0);
+    if (argcw == 1)
+      break;
+    if (!is_dash)
+      CloseHandle (stdi);
+  }
+  LocalFree (argvw);
+  return 0;
+}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]