This file is indexed.

/usr/lib/ocaml/ocamldap/ldif_changerec_parser.mli is in libldap-ocaml-dev 2.1.8-10+b3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
type token =
  | End_of_input
  | Change_type_add
  | Change_type_modrdn
  | Change_type_modify
  | Change_type_delete
  | Dash
  | Newline
  | AttributeType of (string)
  | Dn of (string)
  | Add of (string)
  | Delete of (string)
  | Replace of (string)
  | Attr of (string * string)

val changerec :
  (Lexing.lexbuf  -> token) -> Lexing.lexbuf -> Ldap_ooclient.changerec