Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
pike
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pikelang
pike
Commits
6ac128af
Commit
6ac128af
authored
23 years ago
by
Martin Nilsson
Browse files
Options
Downloads
Patches
Plain Diff
Removed some broken and redundant @decl statements.
Rev: lib/modules/Protocols.pmod/LDAP.pmod/client.pike:1.31
parent
e78122de
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/modules/Protocols.pmod/LDAP.pmod/client.pike
+2
-12
2 additions, 12 deletions
lib/modules/Protocols.pmod/LDAP.pmod/client.pike
with
2 additions
and
12 deletions
lib/modules/Protocols.pmod/LDAP.pmod/client.pike
+
2
−
12
View file @
6ac128af
...
...
@@ -2,7 +2,7 @@
// LDAP client protocol implementation for Pike.
//
// $Id: client.pike,v 1.3
0
2001/11/0
2
0
8
:5
9:32 hop
Exp $
// $Id: client.pike,v 1.3
1
2001/11/0
5
0
0
:5
0:54 nilsson
Exp $
//
// Honza Petrous, hop@unibase.cz
//
...
...
@@ -241,9 +241,6 @@ int _prof_gtim;
//! @[LDAP.client.result.first], @[LDAP.client.result.next]
int count_entries() { return(entrycnt - actnum); }
//! @decl mapping(string:array(string)) fetch()
//! @decl mapping(string:array(string)) fetch(int index)
//!
//! Returns a mapping with an entry for each attribute.
//! Each entry is an array of values of the attribute.
//!
...
...
@@ -352,7 +349,7 @@ int _prof_gtim;
void create(string|void url, object|void context)
{
info = ([ "code_revision" : ("$Revision: 1.3
0
$"/" ")[1] ]);
info = ([ "code_revision" : ("$Revision: 1.3
1
$"/" ")[1] ]);
if(!url || !sizeof(url))
url = LDAP_DEFAULT_URL;
...
...
@@ -636,8 +633,6 @@ int _prof_gtim;
}
//! @decl add(dn, mapping(string:array(string)))
//!
//! The Add Operation allows a client to request the addition
//! of an entry into the directory
//!
...
...
@@ -1095,9 +1090,6 @@ int _prof_gtim;
return (do_op(msgval));
}
//! @decl modifydn(string, string, int)
//! @decl modifydn(string, string, int, string)
//!
//! The Modify DN Operation allows a client to change the leftmost
//! (least significant) component of the name of an entry in the directory,
//! or to move a subtree of entries to a new location in the directory.
...
...
@@ -1145,8 +1137,6 @@ int _prof_gtim;
} //modifydn
//! @decl modify(string, mapping(string:array(mixed)))
//!
//! The Modify Operation allows a client to request that a modification
//! of an entry be performed on its behalf by a server.
//!
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment