svn commit: r214196 - stable/8/bin/sh

David E. O'Brien obrien at FreeBSD.org
Fri Oct 22 06:56:12 UTC 2010


Author: obrien
Date: Fri Oct 22 06:56:11 2010
New Revision: 214196
URL: http://svn.freebsd.org/changeset/base/214196

Log:
  Reduce diff to 9-CURRENT.

Modified:
  stable/8/bin/sh/expand.c

Modified: stable/8/bin/sh/expand.c
==============================================================================
--- stable/8/bin/sh/expand.c	Fri Oct 22 06:39:14 2010	(r214195)
+++ stable/8/bin/sh/expand.c	Fri Oct 22 06:56:11 2010	(r214196)
@@ -1084,15 +1084,14 @@ ifsbreakup(char *string, struct arglist 
 }
 
 
+static char expdir[PATH_MAX];
+#define expdir_end (expdir + sizeof(expdir))
+
 /*
  * Perform pathname generation and remove control characters.
  * At this point, the only control characters should be CTLESC and CTLQUOTEMARK.
  * The results are stored in the list exparg.
  */
-
-static char expdir[PATH_MAX];
-#define expdir_end (expdir + sizeof(expdir))
-
 static void
 expandmeta(struct strlist *str, int flag __unused)
 {


More information about the svn-src-stable-8 mailing list