Skip to content

Commit 021dc89

Browse files
committed
Nothing new, uniform (C) in comment header
1 parent b47bb97 commit 021dc89

File tree

2 files changed

+41
-21
lines changed

2 files changed

+41
-21
lines changed

utils/postpic_export.c

Lines changed: 21 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
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+
********************************************************************/
1121

1222
#include "postpic_utils.h"
1323
#include <libpq/libpq-fs.h>
@@ -38,7 +48,7 @@ void pp_export_usage(const char * pname)
3848
"\t-i image_column\tcolumn containing the images to export, defaults to '%s' \n"
3949
"\t-c name_column\tcolumn to use as output file name\n"
4050
"\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);
4252
}
4353

4454
int pp_parse_export_options(int * argc, char ** argv[], pp_export_options * opts)

utils/postpic_import.c

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,23 @@
1-
/*******************************
2-
PostPic - An image-enabling
3-
extension for PostgreSql
4-
5-
Author: Domenico Rotiroti
6-
License: LGPLv3
7-
8-
Import images from client file
9-
system to server
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_import:
18+
Import images from client file system to server
19+
20+
********************************************************************/
1121

1222
#include "postpic_utils.h"
1323
#include <libpq/libpq-fs.h>

0 commit comments

Comments
 (0)