summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Kohl <jtkohl@mit.edu>1991-03-29 08:37:51 +0000
committerJohn Kohl <jtkohl@mit.edu>1991-03-29 08:37:51 +0000
commite37cbc50f64fb68593bd24f9e8676d5cec0aec65 (patch)
tree527768d5c37f4fdd268179b3694b7303349bf9ab
parent578aecfa158822a1864e660de3897f74ff571469 (diff)
downloadkrb5-e37cbc50f64fb68593bd24f9e8676d5cec0aec65.tar.gz
krb5-e37cbc50f64fb68593bd24f9e8676d5cec0aec65.tar.xz
krb5-e37cbc50f64fb68593bd24f9e8676d5cec0aec65.zip
fix name of .c files (send_msg should be write_msg)
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@1956 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/lib/krb5/os/Imakefile10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/krb5/os/Imakefile b/src/lib/krb5/os/Imakefile
index 194ccf953..6406afd2e 100644
--- a/src/lib/krb5/os/Imakefile
+++ b/src/lib/krb5/os/Imakefile
@@ -33,12 +33,13 @@ OBJS= \
rnd_confoun.o \
read_msg.o \
read_pwd.o \
- send_msg.o \
sendto_kdc.o \
sn2princ.o \
timeofday.o \
unlck_file.o \
- ustime.o
+ ustime.o \
+ write_msg.o
+
SRCS= \
an_to_ln.c \
@@ -63,12 +64,11 @@ SRCS= \
read_pwd.c \
port2ip.c \
rnd_confoun.c \
- send_msg.c \
sendto_kdc.c \
sn2princ.c \
timeofday.c \
unlck_file.c \
- ustime.c
-
+ ustime.c \
+ write_msg.c
Krb5LibraryTarget(os,${OBJS})