Skip to content

Commit

Permalink
defining rdn before dn, it makes logical sense
Browse files Browse the repository at this point in the history
  • Loading branch information
nixeagle committed Jan 22, 2010
1 parent 4f72088 commit cf09ff7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions ldap.lisp
Expand Up @@ -100,6 +100,13 @@
(:documentation "Represents LDAP base path.")
(:default-initargs :base ""))

(defclass rdn (modification)
((rdn :type string
:reader rdn
:initarg :rdn))
(:documentation "!!!")
(:default-initargs :rdn ""))

(defclass dn (modification)
((dn :type string
:reader dn
Expand All @@ -112,13 +119,6 @@
(setf (modification-state object) t)
(setf (slot-value object 'dn) value))

(defclass rdn (modification)
((rdn :type string
:reader rdn
:initarg :rdn))
(:documentation "!!!")
(:default-initargs :rdn ""))

(defclass entry (trivial-ldap:entry)
((dn :type dn
:reader dn
Expand Down

0 comments on commit cf09ff7

Please sign in to comment.