~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to mysys/charset.c

  • Committer: Monty Taylor
  • Date: 2008-10-04 18:42:30 UTC
  • Revision ID: monty@inaugust.com-20081004184230-j2j1uottu2d0yl0m
Removed NullS. bu-bye.

Show diffs side-by-side

added added

removed removed

Lines of Context:
134
134
  {
135
135
    if (test_if_hard_path(sharedir) ||
136
136
        is_prefix(sharedir, DEFAULT_CHARSET_HOME))
137
 
      strxmov(buf, sharedir, "/", CHARSET_DIR, NullS);
 
137
      strxmov(buf, sharedir, "/", CHARSET_DIR, NULL);
138
138
    else
139
139
      strxmov(buf, DEFAULT_CHARSET_HOME, "/", sharedir, "/", CHARSET_DIR,
140
 
              NullS);
 
140
              NULL);
141
141
  }
142
 
  res= convert_dirname(buf,buf,NullS);
 
142
  res= convert_dirname(buf,buf,NULL);
143
143
  return(res);
144
144
}
145
145