Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
| Comment: | Fix copy-paste issues with the header comment for the tarball generator. |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA1: |
e5609b76cb5fdb37a73073abacd5e42f |
| User & Date: | drh 2011-04-08 17:09:47.881 |
Context
|
2011-04-12
| ||
| 02:25 | Update the built-in SQLite version to the 3.7.6 release. ... (check-in: 4dde79b9e6 user: drh tags: trunk) | |
|
2011-04-08
| ||
| 17:09 | Fix copy-paste issues with the header comment for the tarball generator. ... (check-in: e5609b76cb user: drh tags: trunk) | |
|
2011-04-07
| ||
| 22:41 | Add the test-echo command - useful for investigation the wildcard expansion behavior of shells. ... (check-in: cbf8782d56 user: drh tags: trunk) | |
Changes
Changes to src/tar.c.
1 | /* | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | /* ** Copyright (c) 2011 D. Richard Hipp ** ** This program is free software; you can redistribute it and/or ** modify it under the terms of the Simplified BSD License (also ** known as the "2-Clause License" or "FreeBSD License".) ** This program is distributed in the hope that it will be useful, ** but without any warranty; without even the implied warranty of ** merchantability or fitness for a particular purpose. ** ** Author contact information: ** drh@hwaci.com ** http://www.hwaci.com/drh/ ** ******************************************************************************* ** ** This file contains code used to generate tarballs. */ #include <assert.h> #include <zlib.h> #include "config.h" #include "tar.h" /* |
| ︙ | ︙ |