blob: cbf52e18eb349a6e51818d662ab6f7039d796eaa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
--- jconv.c.orig Tue Nov 2 23:03:59 1999
+++ jconv.c Thu May 4 20:05:51 2000
@@ -67,7 +67,7 @@
strcpy(infile, "");
delimChar = ','; /* standard */
- m_CommaDelim = 1; /* standard */
+ m_CommandLineComma = 1; /* standard */
m_UseInfoFile = 0;
while((o = getopt(argc, argv, "edvht:i:s")) != EOF) {
@@ -76,7 +76,7 @@
break;
case 'd': encode = 'd';
break;
- case 's': m_CommaDelim = 0;
+ case 's': m_CommandLineComma = 0;
break;
case 't': strncpy(title, optarg, 32);
title[31] = 0;
|