ソースを参照

* Ignore SIGCONT while in editor

svn: 1368
Bryan Drewery 22 年 前
コミット
49ace7d62c
1 ファイル変更3 行追加2 行削除
  1. 3 2
      src/conf.c

+ 3 - 2
src/conf.c

@@ -166,8 +166,9 @@ confedit()
 */
 */
   }
   }
 
 
-  (void) signal(SIGINT, SIG_IGN);
-  (void) signal(SIGQUIT, SIG_IGN);
+  signal(SIGINT, SIG_IGN);
+  signal(SIGQUIT, SIG_IGN);
+  signal(SIGCONT, SIG_DFL);
 
 
   swap_uids();
   swap_uids();