Procházet zdrojové kódy

dpkg: Do not use abbreviations for 'distributed'

Guillem Jover před 16 roky
rodič
revize
c88029bab1
1 změnil soubory, kde provedl 3 přidání a 2 odebrání
  1. 3 2
      src/configure.c

+ 3 - 2
src/configure.c

@@ -98,7 +98,8 @@ deferred_configure_conffile(struct pkginfo *pkg, struct conffile *conff)
 	if (lstat(cdr2.buf, &stab)) {
 	if (lstat(cdr2.buf, &stab)) {
 		if (errno == ENOENT)
 		if (errno == ENOENT)
 			return;
 			return;
-		ohshite(_("unable to stat new dist conffile `%.250s'"), cdr2.buf);
+		ohshite(_("unable to stat new distributed conffile '%.250s'"),
+		        cdr2.buf);
 	}
 	}
 	md5hash(pkg, newdisthash, cdr2.buf);
 	md5hash(pkg, newdisthash, cdr2.buf);
 
 
@@ -176,7 +177,7 @@ deferred_configure_conffile(struct pkginfo *pkg, struct conffile *conff)
 	case cfo_install | cfof_backup:
 	case cfo_install | cfof_backup:
 		strcpy(cdr2rest, DPKGDISTEXT);
 		strcpy(cdr2rest, DPKGDISTEXT);
 		if (unlink(cdr2.buf) && errno != ENOENT)
 		if (unlink(cdr2.buf) && errno != ENOENT)
-			warning(_("%s: failed to remove old distrib version '%.250s': %s"),
+			warning(_("%s: failed to remove old distributed version '%.250s': %s"),
 			        pkg->name, cdr2.buf, strerror(errno));
 			        pkg->name, cdr2.buf, strerror(errno));
 		strcpy(cdr2rest, DPKGOLDEXT);
 		strcpy(cdr2rest, DPKGOLDEXT);
 		if (unlink(cdr2.buf) && errno != ENOENT)
 		if (unlink(cdr2.buf) && errno != ENOENT)