const std::string &excep_string,
                                 const std::string &cond_string,
                                 int tempflag,
-                                int disabled,
+                                int enabled,
                                 int from_tty)
 {
   std::string addr_string;
 
   std::unique_ptr<ada_catchpoint> c
     (new ada_catchpoint (gdbarch, ex_kind, sal, addr_string.c_str (),
-                        tempflag, disabled, from_tty));
+                        tempflag, enabled, from_tty));
   c->excep_string = excep_string;
   create_excep_cond_exprs (c.get (), ex_kind);
   if (!cond_string.empty ())
 
 extern void create_ada_exception_catchpoint
   (struct gdbarch *gdbarch, enum ada_exception_catchpoint_kind ex_kind,
    const std::string &excep_string, const std::string &cond_string, int tempflag,
-   int disabled, int from_tty);
+   int enabled, int from_tty);
 
 /* Return true if BP is an Ada catchpoint.  */