diff --git a/lib/auth/sia/Makefile.in b/lib/auth/sia/Makefile.in index 3ad239f0f..0e300ffd8 100644 --- a/lib/auth/sia/Makefile.in +++ b/lib/auth/sia/Makefile.in @@ -28,10 +28,11 @@ LDSHARED = @LDSHARED@ SHLIBEXT = @REAL_SHLIBEXT@ LD_FLAGS = @REAL_LD_FLAGS@ -@lib_deps_yes@LIB_DEPS = -L../../kafs -lkafs \ +@lib_deps_yes@LIB_DEPS = -L../../kafs -lkafs \ @lib_deps_yes@ -L../../kadm -lkadm \ @lib_deps_yes@ -L../../krb -lkrb \ @lib_deps_yes@ -L../../des -ldes \ +@lib_deps_yes@ -L../../com_err -lcom_err \ @lib_deps_yes@ -L../../roken -lroken \ @lib_deps_yes@ @LIB_getpwnam_r@ \ @lib_deps_yes@ -lc diff --git a/lib/com_err/ChangeLog b/lib/com_err/ChangeLog index 8173c5572..72f5979b3 100644 --- a/lib/com_err/ChangeLog +++ b/lib/com_err/ChangeLog @@ -1,3 +1,7 @@ +Sat Sep 26 17:42:39 1998 Johan Danielsson + + * compile_et.c: -> "foo_err.h" + Tue Jun 30 17:17:36 1998 Assar Westerlund * Makefile.in: add str{cpy,cat}_truncate diff --git a/lib/sl/lex.l b/lib/sl/lex.l index 0c5653b1b..1bc0322eb 100644 --- a/lib/sl/lex.l +++ b/lib/sl/lex.l @@ -78,7 +78,7 @@ getstring(void) int i = 0; int c; int backslash = 0; - while((c = getc(yyin)) != EOF){ + while((c = input()) != EOF){ if(backslash) { if(c == 'n') c = '\n';