Run entire source base through GNU indent to tidy up the varying
[u/mdw/putty] / be_nossh.c
index fdd9828..76355cb 100644 (file)
@@ -9,6 +9,7 @@
 
 struct backend_list backends[] = {
     {PROT_TELNET, "telnet", &telnet_backend},
+    {PROT_RLOGIN, "rlogin", &rlogin_backend},
     {PROT_RAW, "raw", &raw_backend},
     {0, NULL}
 };
@@ -16,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)
+{
+}