]> granicus.if.org Git - linux-pam/commitdiff
Relevant BUGIDs: 436432
authorAndrew G. Morgan <morgan@kernel.org>
Wed, 27 Jun 2001 06:20:42 +0000 (06:20 +0000)
committerAndrew G. Morgan <morgan@kernel.org>
Wed, 27 Jun 2001 06:20:42 +0000 (06:20 +0000)
Purpose of commit: cleanup

Commit summary:
---------------
small changes inspired by reading a red hat diff.

CHANGELOG
modules/pam_tally/Makefile
modules/pam_tally/pam_tally.c

index 46039d9a128a1f28590d6c071e88a26e2988508e..6be2f9280dccf05dbdf0b7a400de177e0cce34ab 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -49,6 +49,10 @@ bug report - outstanding bugs are listed here:
 0.76: please submit patches for this section with actual code/doc
       patches!
 
+* pam_tally: added an #include (was it really needed?) and made the
+  pam_tally app install (with more pretty printing and a corrected
+  Makefile dependency) motivated by a (red hat diff) courtesy of Harald
+  Welte (Bug 436432 - agmorgan)
 * more pam_limits changes (extracted from redhat version) courtesy of
   Harald Welte (Bug 436061 - agmorgan)
 * configure.in changes to help support non-Linux environments courtesy
index 7949b5586ce6a6262b481ef26da4c69377a48777..1c5106e34ce54b4434826e9079f37c943e80a2e8 100644 (file)
@@ -67,8 +67,8 @@ $(LIBOBJD): $(LIBSRC)
 $(LIBSHARED):   $(LIBOBJD)
        $(LD_D) -o $@ $(LIBOBJD)
 
-$(APPLICATION):   $(APPOBJD)
-       $(CC) $(CFLAGS) -o $@ $< $(LOADLIBES)
+$(APPLICATION): $(APPOBJD) $(TITLE).c
+       $(CC) $(CFLAGS) -o $@ $(APPOBJD) $(LOADLIBES)
     
 endif
 
@@ -78,8 +78,8 @@ $(LIBOBJS): $(LIBSRC)
 $(LIBSTATIC): $(LIBOBJS)
        $(LD) -r -o $@ $(LIBOBJS)
 
-$(APPLICATION):   $(APPOBJS)
-       $(CC) $(CFLAGS) -o $@ $< $(LOADLIBES)
+$(APPLICATION): $(APPOBJS) $(TITLE).c
+       $(CC) $(CFLAGS) -o $@ $(APPOBJS) $(LOADLIBES)
 endif
 
 install: all
@@ -88,7 +88,7 @@ ifdef DYNAMIC
        $(INSTALL) -m $(SHLIBMODE) $(LIBSHARED) $(FAKEROOT)$(SECUREDIR)
 endif
        $(MKDIR) $(FAKEROOT)$(SUPLEMENTED)
-#      $(INSTALL) -m $(APPMODE) $(APPLICATION) $(FAKEROOT)$(SUPLEMENTED)
+       $(INSTALL) -m $(APPMODE) $(APPLICATION) $(FAKEROOT)$(SUPLEMENTED)
 
 remove:
        rm -f $(FAKEROOT)$(SECUREDIR)/$(TITLE).so
index 3d9944580922cec3d03f1182a08a0babecc09eb4..b5bbaba379521be3964bef7e029a46496064933c 100644 (file)
@@ -16,6 +16,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <unistd.h>
+#include <stdlib.h>
 #include <stdarg.h>
 #include <syslog.h>
 #include <pwd.h>
@@ -84,6 +85,7 @@ static void _pam_log(int err, const char *format, ...)
 
 #ifdef MAIN
     vfprintf(stderr,format,args);
+    fprintf(stderr,"\n");
 #else
     openlog(MODULE_NAME, LOG_CONS|LOG_PID, LOG_AUTH);
     vsyslog(err, format, args);