[Pkg-shadow-commits] r3128 - upstream/trunk/lib

Nicolas FRANÇOIS nekral-guest at alioth.debian.org
Thu Mar 18 00:02:53 UTC 2010


Author: nekral-guest
Date: 2010-03-18 00:02:45 +0000 (Thu, 18 Mar 2010)
New Revision: 3128

Modified:
   upstream/trunk/lib/tcbfuncs.c
Log:
Fix typos.

Modified: upstream/trunk/lib/tcbfuncs.c
===================================================================
--- upstream/trunk/lib/tcbfuncs.c	2010-03-18 00:02:17 UTC (rev 3127)
+++ upstream/trunk/lib/tcbfuncs.c	2010-03-18 00:02:45 UTC (rev 3128)
@@ -256,7 +256,7 @@
 		}
 		if (rmdir(dir) != 0) {
 			if (errno != ENOTEMPTY) {
-				fprintf(stderr, _("%s: Cannot removedirectory %s: %s\n"), Prog, dir, strerror(errno));
+				fprintf(stderr, _("%s: Cannot remove directory %s: %s\n"), Prog, dir, strerror(errno));
 				ret = SHADOWTCB_FAILURE;
 			}
 			free(dir);
@@ -464,7 +464,7 @@
 	if (!getdef_bool("USE_TCB"))
 		return SHADOWTCB_SUCCESS;
 	if (stat(TCB_DIR, &tcbdir_stat) != 0) {
-		fprintf(stderr, _("%s: Cannot stat %s: %s\n"), Prog, tcbdir, strerror(errno));
+		fprintf(stderr, _("%s: Cannot stat %s: %s\n"), Prog, TCB_DIR, strerror(errno));
 		return SHADOWTCB_FAILURE;
 	}
 	shadowgid = tcbdir_stat.st_gid;




More information about the Pkg-shadow-commits mailing list