]> git.sur5r.net Git - openldap/commitdiff
s/cmds/rcpt_cmds/ to avoid conflict with Linux Redhat "prandom".
authorKurt Zeilenga <kurt@openldap.org>
Tue, 9 May 2000 17:25:59 +0000 (17:25 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 9 May 2000 17:25:59 +0000 (17:25 +0000)
clients/rcpt500/cmds.c
clients/rcpt500/main.c
clients/rcpt500/rcpt500.h

index 8e33658a3383966095607f60f49386aaee3965aa..d3729ec3f2fa0435066ff0fbfc6c54c8aba91d65 100644 (file)
@@ -12,7 +12,7 @@
 #include <ac/stdlib.h>
 #include "rcpt500.h"
 
-struct command cmds[] = {
+struct command rcpt_cmds[] = {
        "help",         help_cmd,       /* help must be the first command */
        "query for",    query_cmd,      /* must come before "query for" */
        "query",        query_cmd,
index 3e49efdbd7fd438b3ca8df686fa0b2a802b0ff33..f970476a5e8012fce75bfe84b2e1eb6320bcc28d 100644 (file)
@@ -141,7 +141,7 @@ main( int argc, char **argv )
     if ( dosyslog ) {
        syslog( LOG_INFO, "processing command \"%s %s\" from %s",
                ( msg.msg_command < 0 ) ? "Unknown" :
-               cmds[ msg.msg_command ].cmd_text,
+               rcpt_cmds[ msg.msg_command ].cmd_text,
                ( msg.msg_arg == NULL ) ? "" : msg.msg_arg, msg.msg_replyto );
     }
 
@@ -151,10 +151,10 @@ main( int argc, char **argv )
 
 /*
     sprintf( reply, "Your request was interpreted as: %s %s\n\n",
-           cmds[ msg.msg_command ].cmd_text, msg.msg_arg );
+           rcpt_cmds[ msg.msg_command ].cmd_text, msg.msg_arg );
 */
 
-    (*cmds[ msg.msg_command ].cmd_handler)( &msg, reply );
+    (*rcpt_cmds[ msg.msg_command ].cmd_handler)( &msg, reply );
 
     if ( send_reply( &msg, reply ) < 0 ) {
        if ( dosyslog ) {
@@ -360,10 +360,10 @@ find_command( char *text, char **argp )
     }
     *s = '\0';
 
-    for ( i = 0; cmds[ i ].cmd_text != NULL; ++i ) {
-       if (( s = strstr( argbuf, cmds[ i ].cmd_text )) != NULL
-           && isspace( (unsigned char) s[ strlen( cmds[ i ].cmd_text ) ] )) {
-           strcpy( argbuf, text + (s - argbuf) + strlen( cmds[ i ].cmd_text ));
+    for ( i = 0; rcpt_cmds[ i ].cmd_text != NULL; ++i ) {
+       if (( s = strstr( argbuf, rcpt_cmds[ i ].cmd_text )) != NULL
+           && isspace( (unsigned char) s[ strlen( rcpt_cmds[ i ].cmd_text ) ] )) {
+           strcpy( argbuf, text + (s - argbuf) + strlen( rcpt_cmds[ i ].cmd_text ));
            *argp = argbuf;
            while ( isspace( (unsigned char) **argp )) {
                ++(*argp);
index 068af6026b0b02de928029296a444521b55aab9b..35194c9c4dc89b65ddec8d4484c23567195a6814 100644 (file)
@@ -41,7 +41,7 @@ int   query_cmd LDAP_P((struct msginfo *msgp, char *reply));
  */
 
 /* cmds.c */
-extern struct command cmds[];
+extern struct command rcpt_cmds[];
 /* main.c */
 extern int dosyslog;
 #ifdef LDAP_CONNECTIONLESS