Skip to content

Commit

Permalink
db2_ldap: removed trailing spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
miconda committed Nov 13, 2023
1 parent ab659ab commit d2d9a3e
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
16 changes: 8 additions & 8 deletions src/modules/db2_ldap/ld_con.h
@@ -1,5 +1,5 @@
/*
* $Id$
/*
* $Id$
*
* LDAP Database Driver for SER
*
Expand All @@ -18,18 +18,18 @@
* details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/

#ifndef _LD_CON_H
#define _LD_CON_H

/** \addtogroup ldap
* @{
* @{
*/

/** \file
/** \file
* Implementation of LDAP per-connection related data structures and functions.
*/

Expand All @@ -40,7 +40,7 @@
#include <time.h>
#include <ldap.h>

/**
/**
* Per-connection flags for LDAP connections.
*/
enum ld_con_flags
Expand All @@ -52,7 +52,7 @@ enum ld_con_flags

/** A structure representing a connection to a LDAP server.
* This structure represents connections to LDAP servers. It contains
* LDAP specific per-connection data,
* LDAP specific per-connection data,
*/
struct ld_con
{
Expand All @@ -72,7 +72,7 @@ struct ld_con
int ld_con(db_con_t *con);


/** Establish a new connection to server.
/** Establish a new connection to server.
* This function is called when a SER module calls db_connect to establish a
* new connection to the database server.
* @param con A structure representing database connection.
Expand Down
8 changes: 4 additions & 4 deletions src/modules/db2_ldap/ld_fld.c
Expand Up @@ -498,14 +498,14 @@ int ld_ldap2fldex(db_fld_t *fld, LDAP *ldap, LDAPMessage *msg, int init)
/* in case of multivalue we must check if value fits in filter criteria.
LDAP returns record (having each multivalue) if one particular
multivalue fits in filter provided to LDAP search. We need
filter out these values manually. It not perfect because
filter out these values manually. It not perfect because
LDAP filtering may be based on different rule/locale than
raw (ASCII,...) comparision.
raw (ASCII,...) comparision.
We reorder values so we'll have interesting values located from top up to valuesnum at the end.
The same algorithm is applied for client side filtering
*/

do {
Expand Down
8 changes: 4 additions & 4 deletions src/modules/db2_ldap/ld_res.c
@@ -1,5 +1,5 @@
/*
* $Id$
/*
* $Id$
*
* LDAP Database Driver for SER
*
Expand All @@ -18,12 +18,12 @@
* details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

/** \addtogroup ldap
* @{
* @{
*/

/** \file
Expand Down
8 changes: 4 additions & 4 deletions src/modules/db2_ldap/ld_res.h
@@ -1,5 +1,5 @@
/*
* $Id$
/*
* $Id$
*
* LDAP Database Driver for SER
*
Expand All @@ -18,15 +18,15 @@
* details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/

#ifndef _LD_RES_H
#define _LD_RES_H

/** \addtogroup ldap
* @{
* @{
*/

/** \file
Expand Down

0 comments on commit d2d9a3e

Please sign in to comment.