Run entire source base through GNU indent to tidy up the varying
[u/mdw/putty] / be_nossh.c
index 5dac276..76355cb 100644 (file)
@@ -4,18 +4,12 @@
  */
 
 #include <windows.h>
-#ifndef AUTO_WINSOCK
-#ifdef WINSOCK_TWO
-#include <winsock2.h>
-#else
-#include <winsock.h>
-#endif
-#endif
 #include <stdio.h>
 #include "putty.h"
 
 struct backend_list backends[] = {
     {PROT_TELNET, "telnet", &telnet_backend},
+    {PROT_RLOGIN, "rlogin", &rlogin_backend},
     {PROT_RAW, "raw", &raw_backend},
     {0, NULL}
 };
@@ -23,12 +17,18 @@ struct backend_list backends[] = {
 /*
  * Stub implementations of functions not used in non-ssh versions.
  */
-void random_save_seed(void) {
+void random_save_seed(void)
+{
 }
 
-void random_destroy_seed(void) {
+void random_destroy_seed(void)
+{
 }
 
-void noise_ultralight(DWORD data) {
+void noise_ultralight(DWORD data)
+{
 }
 
+void noise_regular(void)
+{
+}