summaryrefslogtreecommitdiffstats
path: root/src/util
diff options
context:
space:
mode:
authorKen Raeburn <raeburn@mit.edu>2002-06-13 01:31:32 +0000
committerKen Raeburn <raeburn@mit.edu>2002-06-13 01:31:32 +0000
commit7f71f97d9972481df25ab3fa01e92a207f93657b (patch)
tree6e7595e06442971464e602b4c01a0b794a70b2dc /src/util
parent0aa5f9d3407cbd789fa36990a7b99af0789f9d3a (diff)
Include "com_err.h" instead of <com_err.h>
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@14503 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
-rw-r--r--src/util/pty/ChangeLog5
-rw-r--r--src/util/pty/cleanup.c2
-rw-r--r--src/util/pty/getpty.c2
-rw-r--r--src/util/pty/init.c2
-rw-r--r--src/util/pty/init_slave.c2
-rw-r--r--src/util/pty/logwtmp.c2
-rw-r--r--src/util/pty/open_ctty.c2
-rw-r--r--src/util/pty/open_slave.c2
-rw-r--r--src/util/pty/pty_paranoia.c2
-rw-r--r--src/util/pty/sane_hostname.c2
-rw-r--r--src/util/pty/update_utmp.c2
-rw-r--r--src/util/pty/update_wtmp.c2
-rw-r--r--src/util/pty/vhangup.c2
-rw-r--r--src/util/pty/void_assoc.c2
14 files changed, 18 insertions, 13 deletions
diff --git a/src/util/pty/ChangeLog b/src/util/pty/ChangeLog
index 430e6a612..875fb7ce8 100644
--- a/src/util/pty/ChangeLog
+++ b/src/util/pty/ChangeLog
@@ -1,5 +1,10 @@
2002-06-12 Ken Raeburn <raeburn@mit.edu>
+ * cleanup.c, getpty.c, init.c, init_slave.c, logwtmp.c,
+ open_ctty.c, open_slave.c, pty_paranoia.c, sane_hostname.c,
+ update_utmp.c, update_wtmp.c, vhangup.c, void_assoc.c: Include
+ "com_err.h" instead of <com_err.h>.
+
* pty-int.h: Don't include syslog.h.
2002-05-24 Ken Raeburn <raeburn@mit.edu>
diff --git a/src/util/pty/cleanup.c b/src/util/pty/cleanup.c
index 87a77c173..650c2dc3a 100644
--- a/src/util/pty/cleanup.c
+++ b/src/util/pty/cleanup.c
@@ -20,7 +20,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
#ifdef HAVE_SYS_WAIT_H
diff --git a/src/util/pty/getpty.c b/src/util/pty/getpty.c
index 0e86514b6..610a471e6 100644
--- a/src/util/pty/getpty.c
+++ b/src/util/pty/getpty.c
@@ -20,7 +20,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/init.c b/src/util/pty/init.c
index df3b2f876..566f10278 100644
--- a/src/util/pty/init.c
+++ b/src/util/pty/init.c
@@ -22,7 +22,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/init_slave.c b/src/util/pty/init_slave.c
index edfad5a48..7a04aea76 100644
--- a/src/util/pty/init_slave.c
+++ b/src/util/pty/init_slave.c
@@ -19,7 +19,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/logwtmp.c b/src/util/pty/logwtmp.c
index 6cb696157..21a35d3a9 100644
--- a/src/util/pty/logwtmp.c
+++ b/src/util/pty/logwtmp.c
@@ -19,7 +19,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/open_ctty.c b/src/util/pty/open_ctty.c
index 5e41d9531..5a1730b31 100644
--- a/src/util/pty/open_ctty.c
+++ b/src/util/pty/open_ctty.c
@@ -19,7 +19,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/open_slave.c b/src/util/pty/open_slave.c
index cc52228b8..5bab6bc36 100644
--- a/src/util/pty/open_slave.c
+++ b/src/util/pty/open_slave.c
@@ -21,7 +21,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/pty_paranoia.c b/src/util/pty/pty_paranoia.c
index 7311e0834..466a65888 100644
--- a/src/util/pty/pty_paranoia.c
+++ b/src/util/pty/pty_paranoia.c
@@ -184,7 +184,7 @@
* non-root.
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
#include <sys/wait.h>
diff --git a/src/util/pty/sane_hostname.c b/src/util/pty/sane_hostname.c
index 3df0d1776..8ef6de875 100644
--- a/src/util/pty/sane_hostname.c
+++ b/src/util/pty/sane_hostname.c
@@ -20,7 +20,7 @@
* express or implied warranty.
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "pty-int.h"
#include <sys/socket.h>
#include "libpty.h"
diff --git a/src/util/pty/update_utmp.c b/src/util/pty/update_utmp.c
index 72c41be4e..004582650 100644
--- a/src/util/pty/update_utmp.c
+++ b/src/util/pty/update_utmp.c
@@ -308,7 +308,7 @@
* username both in utmp and wtmp.
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/update_wtmp.c b/src/util/pty/update_wtmp.c
index b4b5cec97..988bae61a 100644
--- a/src/util/pty/update_wtmp.c
+++ b/src/util/pty/update_wtmp.c
@@ -19,7 +19,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/vhangup.c b/src/util/pty/vhangup.c
index fd6e04523..91408c7a1 100644
--- a/src/util/pty/vhangup.c
+++ b/src/util/pty/vhangup.c
@@ -20,7 +20,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"
diff --git a/src/util/pty/void_assoc.c b/src/util/pty/void_assoc.c
index 4b7e26c5c..a39c9c723 100644
--- a/src/util/pty/void_assoc.c
+++ b/src/util/pty/void_assoc.c
@@ -20,7 +20,7 @@
*
*/
-#include <com_err.h>
+#include "com_err.h"
#include "libpty.h"
#include "pty-int.h"