|
1 | | -/******************************* |
2 | | - PostPic - An image-enabling |
3 | | - extension for PostgreSql |
4 | | - |
5 | | - Author: Domenico Rotiroti |
6 | | - License: LGPLv3 |
7 | | - |
8 | | - Export images to client file |
9 | | - system |
10 | | -*******************************/ |
| 1 | +/******************************************************************** |
| 2 | + PostPic - An image-enabling extension for PostgreSql |
| 3 | + (C) Copyright 2010 Domenico Rotiroti |
| 4 | +
|
| 5 | + This program is free software: you can redistribute it and/or modify |
| 6 | + it under the terms of the GNU Lesser General Public License as |
| 7 | + published by the Free Software Foundation, version 3 of the License. |
| 8 | +
|
| 9 | + This program is distributed in the hope that it will be useful, |
| 10 | + but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | + GNU Lesser General Public License for more details. |
| 13 | +
|
| 14 | + A copy of the GNU Lesser General Public License is included in the |
| 15 | + source distribution of this software. |
| 16 | +
|
| 17 | + postpic_export: |
| 18 | + Export images to client file system |
| 19 | +
|
| 20 | +********************************************************************/ |
11 | 21 |
|
12 | 22 | #include "postpic_utils.h" |
13 | 23 | #include <libpq/libpq-fs.h> |
@@ -38,7 +48,7 @@ void pp_export_usage(const char * pname) |
38 | 48 | "\t-i image_column\tcolumn containing the images to export, defaults to '%s' \n" |
39 | 49 | "\t-c name_column\tcolumn to use as output file name\n" |
40 | 50 | "\t-o name_prefix\tprefix to use to build output file name\n" |
41 | | - "\t\t(use -c or -o)\n", DEF_IMGCOL); |
| 51 | + "\t(use -c or -o)\n", DEF_IMGCOL); |
42 | 52 | } |
43 | 53 |
|
44 | 54 | int pp_parse_export_options(int * argc, char ** argv[], pp_export_options * opts) |
|
0 commit comments