public inbox for patchutils-list@sourceware.org
 help / color / mirror / Atom feed
* [PATCH] Minor error output cleanup
@ 2006-10-24 15:25 Eli Carter
  2008-07-28  9:18 ` Tim Waugh
  0 siblings, 1 reply; 2+ messages in thread
From: Eli Carter @ 2006-10-24 15:25 UTC (permalink / raw)
  To: patchutils-list

[-- Attachment #1: Type: text/plain, Size: 259 bytes --]

Tim,

In looking through interdiff.c I noticed that the errors for "Bad patch"
had two forms: "Bad patch #N" and "Bad patchN".  It's a minor thing.  The
attached (untested) patch changes "Bad patchN" to "Bad patch #N".

Comments?

Eli
eli.carter@commprove.com

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: patchutils-errorstring-cleanup.patch --]
[-- Type: text/x-patch; name="patchutils-errorstring-cleanup.patch", Size: 1103 bytes --]

diff -urN --exclude=CVS patchutils-cvs/src/interdiff.c patchutils/src/interdiff.c
--- patchutils-cvs/src/interdiff.c	2005-05-11 10:21:47.000000000 -0500
+++ patchutils/src/interdiff.c	2006-10-24 10:19:25.000000000 -0500
@@ -714,15 +714,15 @@
 			oldnamelen = 0;
 		}
 		if (getline (&oldname, &oldnamelen, p1) < 0)
-			error (EXIT_FAILURE, errno, "Bad patch1");
+			error (EXIT_FAILURE, errno, "Bad patch #1");
 
 	} while (strncmp (oldname, "--- ", 4));
 	oldname[strlen (oldname) - 1] = '\0';
 
 	if (getline (&newname, &newnamelen, p1) < 0)
-		error (EXIT_FAILURE, errno, "Bad patch1");
+		error (EXIT_FAILURE, errno, "Bad patch #1");
 	if (strncmp (newname, "+++ ", 4))
-		error (EXIT_FAILURE, errno, "Bad patch1");
+		error (EXIT_FAILURE, errno, "Bad patch #1");
 	newname[strlen (newname) - 1] = '\0';
 	start = ftell (p1);
 
@@ -1019,7 +1019,7 @@
 			oldname = NULL;
 		}
 		if (getline (&oldname, &namelen, p1) < 0)
-			error (EXIT_FAILURE, errno, "Bad patch1");
+			error (EXIT_FAILURE, errno, "Bad patch #1");
 
 	} while (strncmp (oldname, "+++ ", 4));
 	oldname[strlen (oldname) - 1] = '\0';

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2008-07-28  9:18 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-10-24 15:25 [PATCH] Minor error output cleanup Eli Carter
2008-07-28  9:18 ` Tim Waugh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).