Changeset 478dc8e
- Timestamp:
- Apr 19, 2013, 3:22:54 AM (12 years ago)
- Branches:
- master, release-1.10
- Children:
- 5175cf8
- Parents:
- 499224d
- git-author:
- Anders Kaseorg <andersk@mit.edu> (04/10/13 01:04:50)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (04/19/13 03:22:54)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zcrypt.c
r6249a88f r478dc8e 16 16 #include <sys/wait.h> 17 17 #include <ctype.h> 18 #include <getopt.h> 18 19 19 20 #include <config.h> … … 116 117 int mode = M_NONE; 117 118 118 charc;119 int c; 119 120 120 121 int messageflag = FALSE; … … 122 123 zoptions.flags = 0; 123 124 124 while ((c = getopt(argc, argv, "ZDERSF:c:i:advqtluons:f:m")) != (char)EOF) 125 static const struct option options[] = { 126 {NULL, 0, NULL, 0} 127 }; 128 129 while ((c = getopt_long(argc, argv, "ZDERSF:c:i:advqtluons:f:m", options, NULL)) != -1) 125 130 { 126 131 switch(c)
Note: See TracChangeset
for help on using the changeset viewer.