- Timestamp:
- Aug 11, 2013, 4:36:03 PM (10 years ago)
- Branches:
- master, release-1.10
- Children:
- f1a71c8, 441fd42, 883b421
- Parents:
- 685cca7
- git-author:
- Anders Kaseorg <andersk@mit.edu> (06/20/13 12:08:41)
- git-committer:
- Anders Kaseorg <andersk@mit.edu> (08/11/13 16:36:03)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
zcrypt.c
r8f335a8 rca1fb26a 29 29 #include "filterproc.h" 30 30 31 #ifndef OWL_VERSION_STRING 32 #ifdef GIT_VERSION 33 #define stringify(x) __stringify(x) 34 #define __stringify(x) #x 35 #define OWL_VERSION_STRING stringify(GIT_VERSION) 36 #else 37 #define OWL_VERSION_STRING PACKAGE_VERSION 38 #endif 39 #endif /* !OWL_VERSION_STRING */ 31 extern const char *version; 40 32 41 33 /* Annotate functions in which the caller owns the return value and is … … 157 149 case OPT_VERSION: 158 150 /* Version */ 159 printf("This is zcrypt version %s\n", OWL_VERSION_STRING);151 printf("This is zcrypt version %s\n", version); 160 152 exit(0); 161 153 case OPT_HELP:
Note: See TracChangeset
for help on using the changeset viewer.