diff options
author | John Kohl <jtkohl@mit.edu> | 1991-03-29 08:37:51 +0000 |
---|---|---|
committer | John Kohl <jtkohl@mit.edu> | 1991-03-29 08:37:51 +0000 |
commit | e37cbc50f64fb68593bd24f9e8676d5cec0aec65 (patch) | |
tree | 527768d5c37f4fdd268179b3694b7303349bf9ab /src | |
parent | 578aecfa158822a1864e660de3897f74ff571469 (diff) | |
download | krb5-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
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/krb5/os/Imakefile | 10 |
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}) |