]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/ngircd/op.c
Remove imp.h and exp.h header files
[ngircd-alex.git] / src / ngircd / op.c
index 71e7cbcec778ae3e65a266846dfa655e04f73cd9..66e9d5a2bfc31fa9eaceb6cbd4f00b088c753f57 100644 (file)
@@ -16,7 +16,6 @@
  * IRC operator functions
  */
 
-#include "imp.h"
 #include <assert.h>
 #include <string.h>
 
 #include "messages.h"
 #include "irc-write.h"
 
-#include <exp.h>
 #include "op.h"
 
-
 /**
  * Return and log a "no privileges" message.
  */
@@ -44,19 +41,18 @@ Op_NoPrivileges(CLIENT * Client, REQUEST * Req)
                from = Client_Search(Req->prefix);
 
        if (from) {
-               Log(LOG_NOTICE, "No privileges: client \"%s\" (%s), command \"%s\"",
+               Log(LOG_NOTICE, "No privileges: client \"%s\" (%s), command \"%s\"!",
                    Req->prefix, Client_Mask(Client), Req->command);
                return IRC_WriteErrClient(from, ERR_NOPRIVILEGES_MSG,
                                          Client_ID(from));
        } else {
-               Log(LOG_NOTICE, "No privileges: client \"%s\", command \"%s\"",
+               Log(LOG_NOTICE, "No privileges: client \"%s\", command \"%s\"!",
                    Client_Mask(Client), Req->command);
                return IRC_WriteErrClient(Client, ERR_NOPRIVILEGES_MSG,
                                          Client_ID(Client));
        }
 } /* Op_NoPrivileges */
 
-
 /**
  * Check that the originator of a request is an IRC operator and allowed
  * to administer this server.
@@ -94,5 +90,4 @@ Op_Check(CLIENT * Client, REQUEST * Req)
        return c;
 } /* Op_Check */
 
-
 /* -eof- */