diff options
author | tron <tron> | 1999-03-29 16:14:40 +0000 |
---|---|---|
committer | tron <tron> | 1999-03-29 16:14:40 +0000 |
commit | 4c003af9761a9422fdfda9c2b2d08694aa43aaf4 (patch) | |
tree | f052fd5d6014767cccc9a01a0bd8563d974c7e08 /x11 | |
parent | 32c6264b81db20a542d54c2188a3af343c0bf1e1 (diff) | |
download | pkgsrc-4c003af9761a9422fdfda9c2b2d08694aa43aaf4.tar.gz |
Repair broken command line parsing, fixes PR pkg/7276 Ignatios Souvatzis.
[Of course this bug report should have gone to the AfterStep author(s).]
Diffstat (limited to 'x11')
-rw-r--r-- | x11/afterstep/patches/patch-ae | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/x11/afterstep/patches/patch-ae b/x11/afterstep/patches/patch-ae new file mode 100644 index 00000000000..ff9cff8c991 --- /dev/null +++ b/x11/afterstep/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.3 1999/03/29 16:14:40 tron Exp $ + +--- src/afterstep/afterstep.c.orig Fri Dec 11 00:34:43 1998 ++++ src/afterstep/afterstep.c Mon Mar 29 18:07:04 1999 +@@ -194,7 +194,7 @@ + else if (!strcmp(argv[i], "-f") && i + 1 < argc) + { + shall_override_config_file = True; +- config_file_to_override = argv[i]; ++ config_file_to_override = argv[++i]; + } + else + usage(); |