summaryrefslogtreecommitdiff
path: root/community/qps/version-patch.diff
diff options
context:
space:
mode:
Diffstat (limited to 'community/qps/version-patch.diff')
-rw-r--r--community/qps/version-patch.diff14
1 files changed, 0 insertions, 14 deletions
diff --git a/community/qps/version-patch.diff b/community/qps/version-patch.diff
deleted file mode 100644
index bfddd2a0a..000000000
--- a/community/qps/version-patch.diff
+++ /dev/null
@@ -1,14 +0,0 @@
---- proc_linux.cpp 2011-07-17 08:03:52.000000000 -0400
-+++ proc_linux.cpp.new 2011-08-09 11:09:47.278589772 -0400
-@@ -1962,7 +1962,10 @@
- int result;
-
- result = sscanf(p, "%d.%d.%d", &major, &minor, &patch);
-- if(result < 3) {
-+ if(result == 2) {
-+ patch = 0;
-+ }
-+ else if(result < 3) {
- fprintf(stderr, "Qps: can't determine version, read %s \n", p);
- fprintf(stderr, "please report this bug.\n");
- exit(1);