]> andersk Git - moira.git/commitdiff
Change default winprofiledir and friends to DFS.
authorzacheiss <zacheiss>
Mon, 30 May 2005 19:13:25 +0000 (19:13 +0000)
committerzacheiss <zacheiss>
Mon, 30 May 2005 19:13:25 +0000 (19:13 +0000)
clients/moira/user.c
clients/stanley/stanley.c
db/schema.sql
regtape/common.pc

index a18948e4f21013a04fda5278b909d390688eedfa..e95f833a78518bdb3c1324d496c015be52d97f76 100644 (file)
@@ -47,8 +47,8 @@ struct mqelem *GetUserInfo(int type, char *name1, char *name2);
 #define DEFAULT_CLASS "?"
 
 #define DEFAULT_WINCONSOLESHELL "cmd"
-#define DEFAULT_WINHOMEDIR "[AFS]"
-#define DEFAULT_WINPROFILEDIR "[AFS]"
+#define DEFAULT_WINHOMEDIR "[DFS]"
+#define DEFAULT_WINPROFILEDIR "[DFS]"
 
 /*     Function Name: UserState
  *     Description: Convert a numeric state into a descriptive string.
index 94f5e63c84eb9672372ea8a76bad03ef916fc2b8..68b214ef3e447faa1a5418d7ac1ec342b5b66562 100644 (file)
@@ -341,11 +341,11 @@ int main(int argc, char **argv)
       if (winhomedir)
        argv[U_WINHOMEDIR] = winhomedir;
       else
-       argv[U_WINHOMEDIR] = "[AFS]";
+       argv[U_WINHOMEDIR] = "[DFS]";
       if (winprofiledir)
        argv[U_WINPROFILEDIR] = winprofiledir;
       else
-       argv[U_WINPROFILEDIR] = "[AFS]";
+       argv[U_WINPROFILEDIR] = "[DFS]";
 
       status = wrap_mr_query("add_user_account", 15, argv, NULL, NULL);
       if (status)
index 2dfd7da7be92f594598e48ab065fa286c898508c..b36a3c42dd98358cd30be9678d8aace5b825beeb 100644 (file)
@@ -49,8 +49,8 @@ create table users
        flag            INTEGER         DEFAULT 0       NOT NULL,
        created         DATE            DEFAULT SYSDATE NOT NULL,
        creator         INTEGER         DEFAULT 0       NOT NULL,
-       winhomedir      VARCHAR(260)    DEFAULT '[AFS]' NOT NULL,
-       winprofiledir   VARCHAR(260)    DEFAULT '[AFS]' NOT NULL
+       winhomedir      VARCHAR(260)    DEFAULT '[DFS]' NOT NULL,
+       winprofiledir   VARCHAR(260)    DEFAULT '[DFS]' NOT NULL
 );
 
 create table krbmap
index db64d72c29e5defb3025304a8674d8b3e8662423..648cc1306755628b5f00a4c8072d0094303b211f 100644 (file)
@@ -292,7 +292,7 @@ void newuser(struct entry *e, int secure)
            NVL(SUBSTR(:name, 0, :xnlen), CHR(0)), NVL(:dept, CHR(0)),
            NVL(:xtitle, CHR(0)), NVL(:xaddress, CHR(0)),
            NVL(:xphone1, CHR(0)), NVL(:xphone2, CHR(0)), SYSDATE, :issecure,
-           SYSDATE, :who, '[AFS]', '[AFS]');
+           SYSDATE, :who, '[DFS]', '[DFS]');
   if (sqlca.sqlcode)
     {
       dbmserr("adding user", sqlca.sqlcode);
This page took 0.063334 seconds and 5 git commands to generate.