From: nekral-guest Date: Sat, 16 May 2009 15:39:01 +0000 (+0000) Subject: * src/passwd.c: Added missing end of line at the end of success X-Git-Tag: 4.1.4.1~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d945d61e42c5d4bb735052ea664adc3f9b853a23;p=thirdparty%2Fshadow.git * src/passwd.c: Added missing end of line at the end of success messages. --- diff --git a/ChangeLog b/ChangeLog index e8afabfd3..3bec2acb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2009-05-16 Nicolas François + + * src/passwd.c: Added missing end of line at the end of success + messages. + 2009-05-16 sacha * po/fr.po: Fixed typo in the vipw usage string. diff --git a/src/passwd.c b/src/passwd.c index 58b69dc1f..64505ca65 100644 --- a/src/passwd.c +++ b/src/passwd.c @@ -1108,10 +1108,10 @@ int main (int argc, char **argv) if (!qflg) { if (!anyflag) { #ifndef USE_PAM - printf (_("%s: password changed."), Prog); + printf (_("%s: password changed.\n"), Prog); #endif /* USE_PAM */ } else { - printf (_("%s: password expiry information changed."), Prog); + printf (_("%s: password expiry information changed.\n"), Prog); } }