s4:libcli/raw: s/SMBchkpth/SMBcheckpath
authorStefan Metzmacher <metze@samba.org>
Tue, 12 Jul 2011 07:26:53 +0000 (09:26 +0200)
committerStefan Metzmacher <metze@samba.org>
Tue, 12 Jul 2011 14:50:55 +0000 (16:50 +0200)
metze

source4/libcli/raw/rawfile.c
source4/libcli/raw/smb.h
source4/smb_server/smb/receive.c

index 1cacaab5cfd1b73eead4f216e230daffb71818de..0b4ad9e929024ba6340dc7df371704af49456271 100644 (file)
@@ -933,7 +933,7 @@ struct smbcli_request *smb_raw_chkpath_send(struct smbcli_tree *tree, union smb_
 {
        struct smbcli_request *req; 
 
-       SETUP_REQUEST(SMBchkpth, 0, 0);
+       SETUP_REQUEST(SMBcheckpath, 0, 0);
 
        smbcli_req_append_ascii4(req, parms->chkpath.in.path, STR_TERMINATE);
 
index ee22ae097cf0fa8d61d0bb2bc9428e36839279b4..b9b658482fe3466d517167c562259c066504682a 100644 (file)
 #define SMBunlock     0x0D   /* unlock byte range */
 #define SMBctemp      0x0E   /* create temporary file */
 #define SMBmknew      0x0F   /* make new file */
-#define SMBchkpth     0x10   /* check directory path */
+#define SMBcheckpath  0x10   /* check directory path */
 #define SMBexit       0x11   /* process exit */
 #define SMBlseek      0x12   /* seek */
 #define SMBtcon       0x70   /* tree connect */
index 1379fe31cf522b997913e95498ccf5a8272158e6..04b0917c23788b2fc445f8a6c75dba34a8af245d 100644 (file)
@@ -103,7 +103,7 @@ static const struct smb_message_struct
 /* 0x0d */ { "SMBunlock",      smbsrv_reply_unlock,            NEED_SESS|NEED_TCON },
 /* 0x0e */ { "SMBctemp",       smbsrv_reply_ctemp,             NEED_SESS|NEED_TCON },
 /* 0x0f */ { "SMBmknew",       smbsrv_reply_mknew,             NEED_SESS|NEED_TCON }, 
-/* 0x10 */ { "SMBchkpth",      smbsrv_reply_chkpth,            NEED_SESS|NEED_TCON },
+/* 0x10 */ { "SMBcheckpath",   smbsrv_reply_chkpth,            NEED_SESS|NEED_TCON },
 /* 0x11 */ { "SMBexit",                smbsrv_reply_exit,              NEED_SESS },
 /* 0x12 */ { "SMBlseek",       smbsrv_reply_lseek,             NEED_SESS|NEED_TCON },
 /* 0x13 */ { "SMBlockread",    smbsrv_reply_lockread,          NEED_SESS|NEED_TCON },