Fix a problem whereby the smb2 service resposne time statistics filter was

getting a comma added to be beginning of the filter that the user entered.


svn path=/trunk/; revision=23639
This commit is contained in:
Stephen Fisher 2007-11-28 02:54:23 +00:00
parent e6ed260aca
commit c232d0b385
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ gtk_smb2stat_init(const char *optarg, void *userdata _U_)
GtkWidget *close_bt;
if(!strncmp(optarg,"smb2,srt,",9)){
filter=optarg+8;
filter=optarg+9;
} else {
filter=NULL;
}